Full text search for "http response code"


Search BackLinks only
Display context of search results
Case-sensitive searching
  • html5_book_원철연 . . . . 172 matches
         아래 목차는 http://fromyou.tistory.com/m/581 에서 다운로드 받은 스프레드시트를 토대로 만들었습니다.
         HTML5 등장 배경 및 표준화 현황 http://fromyou.tistory.com/411
         == 1. HTM5의 구조 및 기본 지식 익히기 http://fromyou.tistory.com/412 ==
         1.2 웹 브라우저(Browser)의 기능과 한계 http://fromyou.tistory.com/413
         1.3 HTM5의 구조(Structure) http://fromyou.tistory.com/414
         1.3.1 HTML5의 요소(Element) 작성 방법 http://fromyou.tistory.com/415
         1.3.2 HTML5에서 요소(Element)의 속성(Attribute) 작성 방법 http://fromyou.tistory.com/416
         1.4 환경설정 및 기본 편집기 http://fromyou.tistory.com/417
         == 2. metadata Elements http://fromyou.tistory.com/418 ==
         2.2 meta 요소(Elements) http://fromyou.tistory.com/419
         == 3. Section Elements, 3.1 nav, header 요소(Element)를 이용한 구성 http://fromyou.tistory.com/420 ==
         3.2 section, header, nav 요소(Element)를 이용한 좌측면 구성 http://fromyou.tistory.com/421
         3.3 section, header, footer, article, aside 요소(Element)를 이용한 우측면 구성 http://fromyou.tistory.com/422
         3.4 footer 요소(Element)를 이용한 꼬리말 구성 http://fromyou.tistory.com/423
         == 4. Group Content Elements, 4.1 p, hr, pre 요소(Element) http://fromyou.tistory.com/424 ==
         4.2 blockquote 요소(Element) http://fromyou.tistory.com/425
         4.3 li, ol, ul 요소(Element) http://fromyou.tistory.com/426
         4.4 dl, dt, dd 요소(Element) http://fromyou.tistory.com/427
         4.5 figure, figcaption요소(Element) http://fromyou.tistory.com/428
         4.6 div 요소(Element) http://fromyou.tistory.com/429
  • Karabiner-Elements . . . . 70 matches
          "from": { "key_code": "j", "modifiers": { "optional": [ "any" ] } },
          "to": [ { "key_code": "down_arrow" } ],
          "from": { "key_code": "k", "modifiers": { "optional": [ "any" ] } },
          "to": [ { "key_code": "up_arrow" } ],
          "from": { "key_code": "h", "modifiers": { "optional": [ "any" ] } },
          "to": [ { "key_code": "left_arrow" } ],
          "from": { "key_code": "l", "modifiers": { "optional": [ "any" ] } },
          "to": [ { "key_code": "right_arrow" } ],
          "from": { "key_code": "u", "modifiers": { "optional": [ "any" ] } },
          "to": [ { "key_code": "delete_or_backspace" } ],
          "from": { "key_code": "i", "modifiers": { "optional": [ "any" ] } },
          "to": [ { "key_code": "home" } ],
          "from": { "key_code": "semicolon", "modifiers": { "optional": [ "any" ] } },
          "to": [ { "key_code": "end" } ],
          { "from": { "key_code": "period", "modifiers": { "optional": [ "any" ] } },
          "to": [ { "key_code": "delete_forward" } ],
          { "from": { "key_code": "n", "modifiers": { "optional": [ "any" ] } },
          "to": [ { "key_code": "page_down" } ],
          "from": { "key_code": "m", "modifiers": { "optional": [ "any" ] }},
          "to": [ { "key_code": "page_up" } ],
  • OurSoftwareDependencyProblem . . . . 66 matches
          https://anyfile-notepad.semaan.ca/app#edit/GoogleDrive/1bxoIiyXlfsgg0gOfwElBFfKLo7a7WyyF
          http://wiki.gimslab.com/moniwiki/wiki.php/OurSoftwareDependencyProblem
         https://research.swtch.com/deps
         https://research.swtch.com/deps
         My own background includes a decade of working with Google’s internal source code system, which treats software dependencies as a first-class concept,1 and also developing support for dependencies in the Go programming language.2
         In today’s software development world, a dependency is additional code that you want to call from your program.
         designing, writing, testing, debugging, and maintaining a specific unit of code.
         In this article we’ll call that unit of code a package;
         These packages contain high-quality, debugged code that required significant expertise to develop.
         Before dependency managers, publishing an eight-line code library would have been unthinkable: too much overhead for too little benefit. But NPM has driven the overhead approximately to zero, with the result that nearly-trivial functionality can be packaged and reused. In late January 2019, the escape-string-regexp package is explicitly depended upon by almost a thousand other NPM packages, not to mention all the packages developers write for their own use and don’t share.
         A package, for this discussion, is code you download from the internet. Adding a package as a dependency outsources the work of developing that code—designing, writing, testing, debugging, and maintaining—to someone else on the internet, someone you often don’t know. By using that code, you are exposing your own program to all the failures and flaws in the dependency. Your program’s execution now literally depends on code downloaded from this stranger on the internet. Presented this way, it sounds incredibly unsafe. Why would anyone do this?
         The phenomenon of open-source software, distributed at no cost over the internet, has displaced many of those earlier software purchases. When reuse was difficult, there were fewer projects publishing reusable code packages. Even though their licenses typically disclaimed, among other things, any “implied warranties of merchantability and fitness for a particular purpose,” the projects built up well-known reputations that often factored heavily into people’s decisions about which to use. The commercial and legal support for trusting our software sources was replaced by reputational support. Many common early packages still enjoy good reputations: consider BLAS (published 1979), Netlib (1987), libjpeg (1991), LAPACK (1992), HP STL (1994), and zlib (1995).
         Dependency managers have scaled this open-source code reuse model down: now, developers can share code at the granularity of individual functions of tens of lines. This is a major technical accomplishment. There are myriad available packages, and writing code can involve such a large number of them, but the commercial, legal, and reputational support mechanisms for trusting the code have not carried over. We are trusting more code with less justification for doing so.
         A basic inspection can give you a sense of how likely you are to run into problems trying to use this code. If the inspection reveals likely minor problems, you can take steps to prepare for or maybe avoid them. If the inspection reveals major problems, it may be best not to use the package: maybe you’ll find a more suitable one, or maybe you need to develop one yourself. Remember that open-source packages are published by their authors in the hope that they will be useful but with no guarantee of usability or support. In the middle of a production outage, you’ll be the one debugging it. As the original GNU General Public License warned, “The entire risk as to the quality and performance of the program is with you. Should the program prove defective, you assume the cost of all necessary servicing, repair or correction.”4
         Is package’s documentation clear? Does the API have a clear design? If the authors can explain the package’s API and its design well to you, the user, in the documentation, that increases the likelihood they have explained the implementation well to the computer, in the source code. Writing code for a clear, well-designed API is also easier, faster, and hopefully less error-prone. Have the authors documented what they expect from client code in order to make future upgrades compatible? (Examples include the C++5 and Go6 compatibility documents.)
         Code Quality
         Is the code well-written? Read some of it. Does it look like the authors have been careful, conscientious, and consistent? Does it look like code you’d want to debug? You may need to.
         Develop your own systematic ways to check code quality. For example, something as simple as compiling a C or C++ program with important compiler warnings enabled (for example, -Wall) can give you a sense of how seriously the developers work to avoid various undefined behaviors. Recent languages like Go, Rust, and Swift use an unsafe keyword to mark code that violates the type system; look to see how much unsafe code there is. More advanced semantic tools like Infer7 or SpotBugs8 are helpful too. Linters are less helpful: you should ignore rote suggestions about topics like brace style and focus instead on semantic problems.
         Keep an open mind to development practices you may not be familiar with. For example, the SQLite library ships as a single 200,000-line C source file and a single 11,000-line header, the “amalgamation.” The sheer size of these files should raise an initial red flag, but closer investigation would turn up the actual development source code, a traditional file tree with over a hundred C source files, tests, and support scripts. It turns out that the single-file distribution is built automatically from the original sources and is easier for end users, especially those without dependency managers. (The compiled code also runs faster, because the compiler can see more optimization opportunities.)
         Does the code have tests? Can you run them? Do they pass? Tests establish that the code’s basic functionality is correct, and they signal that the developer is serious about keeping it correct. For example, the SQLite development tree has an incredibly thorough test suite with over 30,000 individual test cases as well as developer documentation explaining the testing strategy.9 On the other hand, if there are few tests or no tests, or if the tests fail, that’s a serious red flag: future changes to the package are likely to introduce regressions that could easily have been caught. If you insist on tests in code you write yourself (you do, right?), you should insist on tests in code you outsource to others.
  • Ajax관련사이트 . . . . 52 matches
         아래내용은 [^http://blog.naver.com/jinoxst/140021466351] 에서 퍼왔습니다.
         http://ajaxian.com/
         http://ajaxpatterns.org
         http://ajaxmatters.com/r/welcome
         http://ajaxblog.com/
         http://labs.google.com/
         http://www.adaptivepath.com/
         http://www.37signals.com/
         http://www.oreilly.com/
         http://developer.apple.com/
         http://zk1.sourceforge.net/
         http://sourceforge.net/projects/zk1/
         http://sourceforge.net/projects/taconite
         http://www.rubyonrails.org/
         http://www.ruby-lang.org/en/
         http://swik.net/AJAXSLT
         http://code.google.com/webtoolkit/
         http://www.axentric.com/posts/default/7
         http://www-128.ibm.com/developerworks/kr/library/os-ecl-ajax/ => Eclipse의 Ajax Toolkit Framework에서 지원되는 툴 (한글)
         http://www.youngpup.net/2001/domdrag/ => dom dram 관련 싸이트
  • jEdit . . . . 42 matches
         JTidyPlugin - HTML과 XML에서 매칭되는 태그를 표시 http://jtidy.sourceforge.net/
         codelint.disabled_options=
         codebrowser.extendedState=0
         codebrowser.width=973
         options.pmd.rules.SuspiciousHashcodeMethodName=true
         plugin-blacklist.CodeLint.jar=false
         plugin-blacklist.Code2HTML.jar=false
         codeaid.autoHintDisplay=true
         codeaid.autoidentifier=true
         plugin-blacklist.commons-httpclient-2.0-rc2.jar=false
         plugin-blacklist.commons-httpclient-2.0.1.jar=false
         codelint.antic.path=
         codelint.log=false
         codelint.runonsave=false
         code2html.wrap=100
         codebrowser.y=177
         codebrowser.x=10
         plugin-blacklist.CodeBrowser.jar=false
         plugin-blacklist.CodeAid.jar=false
         plugin-blacklist.commons-codec-1.3.jar=false
  • CleanArchitecture-2020 . . . . 28 matches
         http://image.yes24.com/momo/TopCate1752/MidCate008/175178670.jpg?width=120
         http://www.yes24.com/Product/Goods/28292167
         https://anyfile-notepad.semaan.ca/app#edit/GoogleDrive/1VxUSCKWvS2jq7XVYJwHgGDYLfo9gf6xb
         https://anyfile-notepad.semaan.ca/app#edit/GoogleDrive/1wYRHXfNPGlTbO_bPyKmtywbVF2dRc34k
         https://anyfile-notepad.semaan.ca/app#edit/GoogleDrive/10dgYui3q4Qf5t2OPLEg1yFjVTREr4XBk
         https://anyfile-notepad.semaan.ca/app#edit/GoogleDrive/1e5OGzbEKiNPrGXAFCXC8UWnAdpdU9mL3
         https://anyfile-notepad.semaan.ca/app#edit/GoogleDrive/1QgVjnu8sRjAJ5APTA8ahiFyvOtT8QwBh
         In a calling tree, source code dependencies followed the flow of control.
         Note that the source code dependency between ML1 and the interface I points in the opposite direction compared to the flow of control.
         The fact that OO languages provide safe and convenient polymorphism means that any source code dependency, no matter where it is, can be inverted.
         Using OO polymorphism, architect can gain absolute control over every source code dependency in the system.
         https://anyfile-notepad.semaan.ca/app#edit/GoogleDrive/1MFnenN3jeKWTwRCqwVkC5VL9eX4xEZkE
         Architects would be wise to push as much processing as possible into the immutable components, and to drive as much code as possible out of those components that must allow mutation.
         https://anyfile-notepad.semaan.ca/app#edit/GoogleDrive/1pqBI7vf2Ax8jreJRcAoLQ7FhbqrNChcH
         https://anyfile-notepad.semaan.ca/app#edit/GoogleDrive/1t5qaFaBgJ59DC_UGdGgayLIyua1mRyza
         separate the code that different actors depend on.
         https://anyfile-notepad.semaan.ca/app#edit/GoogleDrive/1FfzWfWFlXhNd_Ep95TISdIpdrZPZrE9V
         A change to the source code of op2 in OPS will force User1 to be recompiled and redeployed, even though nothing that it cared about has actually changed.
         All source code dependencies cross the curved line pointing in the same direction, toward the abstract side.
         Note that the flow of control crosses the curved line in the opposite direction of the source code dependencies. The source code dependencies are inverted against the flow of control.
  • httpRequest.js . . . . 28 matches
         XMLHttpRequest 객체를 사용하는 [ajax] 공통 함수
         //XMLHttpRequest 객체를 저정할 전역 변수
         var httpRequest = null;
         //브라우저에 따라 XMLHttpRequest 객체를 생성
         function getXMLHttpRequest()
          return new ActiveXObject("MSXML2.XMLHTTP");
          return new ActiveXObject("Microsoft.XMLHTTP");
          } else if (window.XMLHttpRequest) {
          return new XMLHttpRequest();
         //XMLHttpRequest를 사용해서 웹 서버에 요청
          httpRequest = getXMLHttpRequest();
          var httpMethod = method ? method : 'GET';
          if (httpMethod != 'GET' && httpMethod != 'POST') {
          httpMethod = 'GET';
          var httpParams = "";
          if (httpParams == "") {
          httpParams = key+'='+encodeURIComponent(params[key]);
          httpParams += '&'+key+'='+encodeURIComponent(params[key]);
          var httpUrl = url;
          if (httpMethod == 'GET' && httpParams != "")
  • bookmarklets . . . . 26 matches
         var COU='https://www.coupang.com/np/search?q=';
         var ALA='https://www.aladin.co.kr/search/wsearchresult.aspx?SearchTarget=All&SearchWord=';
          openSite("http://wiki.gimslab.com/moniwiki/wiki.php/bookmarklets","");
         v="http://www.coupang.com/np/search?q="+encodeURIComponent(v);
         javascript:var v=document.getElementById("ucCatalogAndItemName_hdivItemTitle").textContent.trim();v="http://www.coupang.com/np/search?q="+encodeURIComponent(v);javascript:location.href=v;
         javascript:(function(){var%20c=encodeURIComponent;location.href='http://www.google.com/gwt/n?u='+c(location.href);})();
         }function%20openSdic(){var%20w=window.open('http%3a%2f%2fengdic.daum.net%2fdicen%2fsmall_search.do%3fendic_kind%3dall%26m%3dall%26q%3d'+getSelection(),'DirectSearch_Dic','left='+(screen.width-410)+',top=17,width=405,height=500,resizable=1,scrollbars=1');void(0);}openSdic();
         javascript:function%20getSelection(){return%20document.all%20?%20document.selection.createRange().text:document.getSelection();}function%20openSdic(){var%20c=encodeURIComponent;var%20w=window.open('http://endic.naver.com/popManager.nhn?m=search&searchOption=&query='+c(getSelection()),'DirectSearch_Dic','left='+(screen.width-410)+',top=17,width=405,height=500,resizable=no,scrollbars=no');void(0);}openSdic();
         javascript:function%20openSdic(){var%20w=window.open('http://endic.naver.com/popManager.nhn?m=miniPopMain','DirectSearch_Dic','left='+(screen.width-410)+',top=17,width=405,height=500,resizable=no,scrollbars=no');void(0);}openSdic();
         javascript:(function(){var%20a=window,b=document,c=encodeURIComponent,d=a.open("http://www.google.com/bookmarks/mark?op=edit&output=popup&bkmk="+c(b.location)+"&title="+c(b.title),"bkmk_popup","left="+((a.screenX||a.screenLeft)+10)+",top="+((a.screenY||a.screenTop)+10)+",height=420px,width=550px,resizable=1,alwaysRaised=1");a.setTimeout(function(){d.focus()},300)})();
         javascript:var%20a=window,b=document,c=encodeURIComponent;var%20s=b.getSelection();var%20tit=s.length>0?s.substring(0,100):b.title;tit=tit.replace(/\'/g,'');open('http://mar.gar.in/post/popup_post/&qTitle='+c(c(tit))+'&qURL='+c(c(location.href)),'mar_bkmk','left='+((a.screenX||a.screenLeft)+10)+',top='+((a.screenY||a.screenTop)+10)+',height=610px,width=780px,resizable=1,alwaysRaised=1,scrollbars=1');void(0);
         javascript:location.href='http://mar.gar.in/post/popup_post/&qURL='+encodeURIComponent(encodeURIComponent(location.href))+'&qTitle='+encodeURIComponent(encodeURIComponent((document.getSelection().length>0?document.getSelection().substring(0,100):document.title).replace(/\'/g,'')));
         javascript:void(location.href='http://tinyurl.com/create.php?url='+encodeURIComponent(location.href))
         javascript:function getSelection(){return document.all ? document.selection.createRange().text:document.getSelection();}function openSdic(){var c=encodeURIComponent;var w=window.open('https://www.google.com/search?q=다음영화 '+c(getSelection()),'DaumMovie');void(0);}openSdic();
  • HttpsHCApache.java . . . . 24 matches
         [java_https] /
         package com.gimslab.https_test;
         import org.apache.http.HttpEntity;
         import org.apache.http.HttpResponse;
         import org.apache.http.client.methods.HttpGet;
         import org.apache.http.conn.scheme.Scheme;
         import org.apache.http.conn.ssl.SSLSocketFactory;
         import org.apache.http.impl.client.DefaultHttpClient;
         public class HttpsHCApache {
          new HttpsHCApache().httpsGetTest();
          private void httpsGetTest() throws Exception {
          DefaultHttpClient httpclient = new DefaultHttpClient();
          Scheme sch = new Scheme("https", socketFactory, 443);
          httpclient.getConnectionManager().getSchemeRegistry().register(sch);
         // HttpGet httpget = new HttpGet("https://h.gimslab.com/");
          HttpGet httpget = new HttpGet("https://www.google.com/");
          System.out.println("executing request" + httpget.getRequestLine());
          HttpResponse response = httpclient.execute(httpget);
          HttpEntity entity = response.getEntity();
          System.out.println(response.getStatusLine());
  • ajax . . . . 23 matches
         XMLHttpRequest
         [^http://developers.sun.com/ajax/componentscatalog.jsp AJAX Components Available for the Sun Java Studio Creator 2 IDE]
         [^http://www.clearnova.com/ ThinkCAP JX]
         var xmlhttp;
          xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
          xmlhttp.onreadystatechange = onreadystatechangeEH
          xmlhttp.open("GET", "/comnote/web/ajax/ajaxTest_getMessage.jsp", true);
          xmlhttp.send();
          if(xmlhttp.readyState){
          document.getElementById("statusCode").innerText = xmlhttp.readyState;
          if(xmlhttp.readyState == 4){
          if (xmlhttp.status == 200)
          document.getElementById("result").innerText = xmlhttp.responseText;
          document.getElementById("statusText").innerText = xmlhttp.statusText;
         xmlhttp.readyState : <div id="statusCode"></div>
         xmlhttp.statusText : <div id="statusText"></div>
         xmlhttp.responseText : <div id="result"></div>
         [^http://hikiki.net/comnote/web/ajax/]
         http://okjsp.pe.kr/jspwiki/Wiki.jsp?page=Ajax
         [http://www.c2.com/cgi/wiki?AjaxWebApplications Ajax Web Applications]
  • HelpOnLinking . . . . 22 matches
         The supported URL schemas are: `http:`, `https:`, `ftp:`, `nntp:`, `news:`, `mailto:`, `telnet:`, and `file:`. Please see HelpOnConfiguration to extend this schemas.
          * http://moniwiki.sourceforge.net/
          * [http://moniwiki.sourceforge.net/]
          * [http://moniwiki.sourceforge.net/ MoniWiki Sourceforge Homepage]
          * http://moniwiki.sourceforge.net/imgs/moniwiki-logo.gif
          * [http://moniwiki.sourceforge.net/imgs/moniwiki-logo.gif]
          * [http://moniwiki.sourceforge.net/imgs/moniwiki-logo.gif moniwiki-logo.gif]
          * [http://moniwiki.sourceforge.net/ http://moniwiki.sourceforge.net/imgs/moniwiki-logo.gif]
          * http://moniwiki.sourceforge.net/
          * [http://moniwiki.sourceforge.net/]
          * [http://moniwiki.sourceforge.net/ MoniWiki Sourceforge Homepage]
          * http://moniwiki.sourceforge.net/imgs/moniwiki-logo.gif
          * [http://moniwiki.sourceforge.net/imgs/moniwiki-logo.gif]
          * [http://moniwiki.sourceforge.net/imgs/moniwiki-logo.gif moniwiki-logo.gif]
          * [http://moniwiki.sourceforge.net/ http://moniwiki.sourceforge.net/imgs/moniwiki-logo.gif]
          * [http://moniwiki.sourceforge.net/ http://moniwiki.sourceforge.net/imgs/moniwiki-logo.gif]
          * [http://moniwiki.sourceforge.net/ http://moniwiki.sourceforge.net/imgs/moniwiki-logo.gif]
  • Useful Software . . . . 22 matches
          * wifi mouse : 스마트폰을 맥의 PC용 멀티터치패드로 사용하기(우분투 지원) https://play.google.com/store/apps/details?id=wsm.wifimousefree&hl=ko
          *[^http://winmerge.sourceforge.net/ WinMerge] : 강력한 파일 및 폴더 비교 및 동기화
          * http://pixlr.com/editor/ 온라인툴
          * Tiff Splitter : http://tiffsplitter.codeplex.com/
          * Tiff Splitter : http://www.brothersoft.com/tiff-splitter-41528.html
          * http://hornil.com/kr/products/stylepix/ 이미지 에디팅
          * Wink : http://www.debugmode.com/wink/
          * OGM to AVI / MKV to AVI : http://ogmtoavi.sourceforge.net/
          * 다음 팟 인코더 : 동영상 변환 및 인코딩 http://tvpot.daum.net/encoder/PotEncoderSpec.do
          * http://www.ocenaudio.com/ autio editor
          * Power Sound Editor Free : http://www.free-sound-editor.com/
          * KDE Connect(for linux and android), Soduto(for mac): clipboard auto sharing between devices(mac, android, linux) - https://soduto.com/
          * MagicDisc : virtual cd/dvd-rom, make cd/dvd image http://www.magiciso.com/tutorials/miso-magicdisc-overview.htm
          * TClockEx : 윈도우트레이에 날짜 표시 등 달력관련 유틸 http://www.rcis.co.za/dale/tclockex/
          * Dependency Walker : a free utility that scans any 32-bit or 64-bit Windows module (exe, dll, ocx, sys, etc.) and builds a hierarchical tree diagram of all dependent modules. (http://www.dependencywalker.com/)
          * PowerPro : http://powerpro.webeddie.com/, 네이버동호회(http://cafe.naver.com/powerpro.cafe)
          * pdf995 : pdf priter driver ([^http://www.pdf995.com])
          * PrimoPDF : pdf printer driver [^http://www.primopdf.com/]
  • (번역)PleaseStopCallingDatabasesCPOrAP . . . . 21 matches
          * 원문: https://martin.kleppmann.com/2015/05/11/please-stop-calling-databases-cp-or-ap.html Published by Martin Kleppmann on 11 May 2015.
         This blog post has been translated into [https://habrahabr.ru/post/258145/ Russian], [http://suzuki79.hatenablog.com/entry/2017/11/24/222827 Japanese], and [https://blog.the-pans.com/cap/ Chinese].
         For more detail on problems with CAP, and a proposal for an alternative, please see my paper [https://arxiv.org/abs/1509.05393 A Critique of the CAP Theorem].
         [[br]]-- 이 블로그 글은 [https://habrahabr.ru/post/258145/ 러시아어], [http://suzuki79.hatenablog.com/entry/2017/11/24/222827 일본어] 및 [https://blog.the-pans.com/cap/ 중국어]로 번역되었습니다.
         CAP 관련 문제 및 다른 의견에 대한 좀 더 자세한 내용은 내 논문 [https://arxiv.org/abs/1509.05393 CAP이론 비평]을 참조하세요.
         In his excellent blog post [https://www.somethingsimilar.com/2013/01/14/notes-on-distributed-systems-for-young-bloods/ Notes on Distributed Systems for Young Bloods], Jeff Hodges recommends that you use the [https://henryr.github.io/cap-faq/ CAP theorem] to critique systems.
         A lot of people have taken that advice to heart, describing their systems as "CP" (consistent but not available under network partitions), "AP" (available but not consistent under network partitions), or sometimes "CA" (meaning "I still haven’t read [http://codahale.com/you-cant-sacrifice-partition-tolerance/ Coda’s post from almost 5 years ago]").
         [[br]]-- Jeff Hodges의 훌륭한 블로그 글 [https://www.somethingsimilar.com/2013/01/14/notes-on-distributed-systems-for-young-bloods/ 초보를 위한 분산시스템에 대한 노트]에서 그는 여러분이 시스템을 평가하는데 [https://henryr.github.io/cap-faq/ CAP 이론]을 사용하기를 권고하고 있습니다.
         많은 사람들이 그들의 시스템을 CP(분리된 네트워크하에서 일관성은 있지만 가용성은 없는), AP(분리된 네트워크하에서 가용성은 있지만 일관성은 없는) 때로는 CA("난 아직 [http://codahale.com/you-cant-sacrifice-partition-tolerance/ 거의 5년전의 Coda의 게시글]을 아직 읽지 못했다")로 설명하는 지침을 중요하게 받아들여왔습니다.
         The proof only holds if you use the words with the same meaning as they are used in [https://www.comp.nus.edu.sg/~gilbert/pubs/BrewersConjecture-SigAct.pdf the proof].
         증명이란 [https://www.comp.nus.edu.sg/~gilbert/pubs/BrewersConjecture-SigAct.pdf 그 증명]에서 사용된 의미와 동일한 의미를 가진 단어를 사용할 때만 성립됩니다.
          * Availability in CAP is defined as "every request received by a non-failing {{{[database]}}} node in the system must result in a {{{[non-error]}}} response".
         See the following diagram (sneak preview from an unreleased chapter of [http://dataintensive.net/ my book]):
         다음 다이어그램을 보세요([http://dataintensive.net/ 내 책] 미공개 챕터 살짝 미리보기)
         https://martin.kleppmann.com/2015/05/linearizability.png?width=640
  • docs . . . . 16 matches
         https://issart.com/blog/can-use-cassandra-big-data-world/ | How You Can Use Cassandra in the Big Data World - Custom Web Development Blog
         https://martinfowler.com/articles/consumerDrivenContracts.html | Consumer-Driven Contracts: A Service Evolution Pattern
         https://martinfowler.com/articles/microservice-trade-offs.html#distribution | Microservice Trade-Offs
         https://martinfowler.com/articles/distributed-objects-microservices.html | Microservices and the First Law of Distributed Objects
         https://martinfowler.com/articles/microservices.html#DesignForFailure | Microservices
         http://www.rgoarchitects.com/Files/fallacies.pdf | I heard about the 8 fallacies of distributed computing few years ago - fallacies.pdf
         https://martinfowler.com/eaaCatalog/optimisticOfflineLock.html | P of EAA: Optimistic Offline Lock
         https://paulhammant.com/2011/11/29/cookie-cutter-scaling/ | Cookie Cutter Scaling
         https://martinfowler.com/bliki/LimitationsOfGeneralAdvice.html | LimitationsOfGeneralAdvice
         https://martinfowler.com/bliki/MicroservicePremium.html | MicroservicePremium
         http://highscalability.com/blog/2014/4/8/microservices-not-a-free-lunch.html | Microservices - Not a free lunch! - High Scalability -
         https://martinfowler.com/bliki/LimitationsOfGeneralAdvice.html | LimitationsOfGeneralAdvice
         https://martinfowler.com/bliki/MicroservicePremium.html | MicroservicePremium
         https://www.javacodegeeks.com/2018/07/spring-state-machine.html | Spring State Machine: what is it and do you need it? | Java Code Geeks - 2019
         https://blogs.msdn.microsoft.com/andreasderuiter/2012/12/05/designing-an-etl-process-with-ssis-two-approaches-to-extracting-and-transforming-data/ | Designing an ETL process with SSIS: two approaches to extracting and transforming data – Andreas De Ruiter's BI blog
  • XMLHttpRequest . . . . 13 matches
         [httpRequest.js] - [XMLHttpRequest] 객체를 사용하는 [ajax] 공통 함수
         XMLHttpRequest는 현재 표준은 아니지만 대부분의 브라우져에서 지원
         httpRequest.open(
         httpRequest.send(null);
         httpRequest.send("a=bbb&c=ddd");
         httpRequest.onreadystatechange = readyStateChangeEventHandler;
         httpRequest.open(...);
         httpRequest.send(...);
         if(httpRequest.status==200){
         = XMLHttpRequest 객체의 상태 =
         alert(httpReq.responseText);
         var retXML = httpReq.responseXML;
         encodeURIComponent("한글파람");
  • HandHeldPC . . . . 11 matches
          * [^http://www.khug.org/] - 한국 핸드헬드 피씨 사용자 모임
          * [^http://www.pdabench.com/]
          * [^http://www.todaysppc.com/]
          * [^http://marticle.co.kr/]
          * [^http://pda.myfolder.net/] - pda s/w 자료실
          * [^http://www.propoz.co.kr/]
          * [^http://mohoo.com/] - 모바일 페이지 검색엔진
          * [^http://nepda.com/] - KT네스팟에서 운영하는 PDA용 사이트
          * [^http://clip.bakion.com/] - PDA 버전을 지원하지 않는 각종 신문, 동호회의 게시판과 뉴스 클립
          * [^http://pda.daum.net/] - 다음 사이트의 pda 버전
          * [^http://pda.chb.co.kr/] - 조흥은행 인터넷뱅킹 사이트 pda 버젼
  • InterMap . . . . 11 matches
         Jangnan http://jangnan.st/moniwiki/wiki.php/
         #Whois http://ws.arin.net/cgi-bin/whois.pl?queryinput=
         MoniWiki ?action=goto&oe=utf-8&url=http://moniwiki.sf.net/wiki.php/
         MathWorld http://mathworld.wolfram.com/$PAGE.html
         FOAF http://xml.mfd-consult.dk/foaf/explorer/?foaf=
         IMDB http://us.imdb.com/Title?
         GtkRef http://developer.gnome.org/doc/API/2.0/gtk/$PAGE.html
         Php http://www.php.net/manual/en/function.$PAGE.php
         Technorati http://www.technorati.com/tag/
         Delicious http://del.icio.us/tag/
         Flickr http://www.flickr.com/photos/tags/
  • AI Tools . . . . 10 matches
         https://heygen.com
         https://arcards.ai
         https://www.prpt.ai/
         https://gptable.net/
          * 유튜브 요약: https://traw.ai/home
          * 유튜브 요약 Chrome extension: https://chromewebstore.google.com/detail/youtube-chatgpt-%EC%B1%84%ED%8C%85gpt%EB%A5%BC-%EC%82%AC%EC%9A%A9/baecjmoceaobpnffgnlkloccenkoibbb?hl=ko
          * https://github.com/Pythagora-io/gpt-pilot - https://www.youtube.com/watch?v=xQlnqTMC9xA
          * voice-changer: https://github.com/w-okada/voice-changer/blob/master/README_en.md
         파이썬 알려주는 봇: https://app.droxy.ai/guest-chatbot/64d446d9176401e6aa48de5e
  • JavaUnicodeEncoderDecoder . . . . 10 matches
         [unicode]
         System.out.println(URLEncoder.encode("a+b c", "UTF-8"));
         public class Unicode{
         public static String encode( String s){
         public static String decode( String uni){
          System.out.println(Unicode.decode(args[1]));
          System.out.println(Unicode.encode(args[1]));
  • LinuxNews . . . . 10 matches
         http://www.eweekkorea.com/02_contents/contents_view.asp?num=17474&num_c=5&tit=%5B%ED%99%9C%EC%9A%A9%EC%82%AC%EB%A1%80%5D%20SK%EC%BB%A4%EB%AE%A4%EB%8B%88%EC%BC%80%EC%9D%B4%EC%85%98%EC%A6%88%20%EC%8B%B8%EC%9D%B4%EC%9B%94%EB%93%9C
         http://www.zdnet.co.kr/news/enterprise/os/0,39031185,39156097,00.htm
         http://www.inews24.com/php/news_view.php?g_serial=232615&g_menu=020600
         http://www.zdnet.co.kr/news/enterprise/dev/0,39031103,39151522,00.htm
         http://www.linuxworldkorea.com/linux_kor/b_01.php?onEnterFrame=%5Btype+Function%5D&pageNum=2&sub=1
         http://www.zdnet.co.kr/news/digital/0,39030978,39147322,00.htm
         http://www.etnews.co.kr/news/sokbo_detail.html?id=200604200164
         http://www.zdnet.co.kr/news/enterprise/os/0,39031185,39146560,00.htm
         http://www.zdnet.co.kr/news/enterprise/os/0,39031185,39145737,00.htm
         http://www.zdnet.co.kr/news/enterprise/os/0,39031185,39145762,00.htm
  • Pivotal summit 2019 Seoul . . . . 10 matches
         https://github.com/mkheck/DIR
         https://www.reactive-
         6.Produce tested and working code
         https://www.infoq.com/news/2019/10/swift-method/
         https://www.eventstorming.com/
         https://dzone.com/articles/monolith-to-microservices-using-the-strangler-patt
         https://github.com/mkheck/drinking-from-the-stream
         https://spring.io/projects/spring-cloud-stream
         https://github.com/mkheck/drinking-from-the-stream-kotlin
         https://www.facebook.com/pivotalkorea/videos/2505544716207510/
  • Css관련사이트 . . . . 9 matches
         [^http://csslook.com/category/gallery/government/] - CSS를 기반으로 디자인된 사이트를 수집하여 전시하는 곳
         [^http://forum.standardmag.org/] - 표준관련 포럼
         [^http://csszengarden.com] - css 변경으로 전혀 다른 디자인이 나옴, 개인제작 css 올려서 적용할 수 있음
         [^http://templates.arcsin.se]
         [^http://thenoodleincident.com/tutorials/box_lesson/boxes.html]
         [^http://maxdesign.com.au/presentation/page_layouts/]
         [^http://www.cssbeauty.com]
         [^http://www.designshack.co.uk]
         [^http://cssvault.com]
  • Html5HTML . . . . 9 matches
         <link rel='alternate' type="application/rss+xml" href="http://myblog.com/feed" />
         <link rel='pingback' href="http://myblog.com/xmlrpc.php">
         <link rel='prefetch' href="http://myblog.com/main.php">
         <a rel='archives' href="http://myblog.com/archives">old posts</a>
         <a rel='external' href="http://notmysite.com">tutorial</a>
         <a rel='license' href="http://www.apache.org/licenses/LICENSE-2.0">license</a>
         <a rel='nofollow' href="http://notmysite.com/sample">wannabe</a>
         <a rel='tag' href="http://myblog.com/category/games">games posts</a>
         <div itemscope itemtype="http://example.org/band">
  • JavaListSystem.properties() . . . . 9 matches
         code
         java.vendor.url=http://java.sun.com/
         java.vendor.url.bug=http://java.sun.com/cgi-bin/bugreport...
         sun.io.unicode.encoding=UnicodeLittle
         java.vendor.url=http://www.hp.com/go/Java
         java.vendor.url.bug=http://www.hp.com/go/Java
         sun.io.unicode.encoding=UnicodeBig
  • ProcMail . . . . 9 matches
         [mmencode]를 이용하여 quoted-printable이나 base64등으로 encodeing된 메일을 디코딩할수 있으며 [formail]툴을 이용하여 메일헤더등의 메일형식을 바꿀 수 있다.
          * w : 필터나 프로그램이 작업을 종료하고 그의 exitcode를 체크한다.(보통은 무시) 만일 필터가 실패로 끝나면 텍스트에 필터가 적용되지 않는다.
          * ? : 사용하는 프로그램의 exitcode를 사용한다.
         * (8282gogo@gmail.com|my\.%6e%45t%69%41%6e\.com/%7Ejungmeod9|my.%6e%45ti%61n.com/%7Enooknook|ahjetr.servehttp.com|chg.serveftp.com|%79%61%68%6f%6f.%6d%69%73%65%63%75%72%65.%63%6f%6d|kjhkk.redirectme.net|hompyfile.%70%61%52%61%6e.com|vita.kyed.com|www.%73%4fm%41%63%54%68.com|hompyfile.%50a%52%41%4e.com|defasuhekinmadin.com|greptimeloans.com|5656fy.com|ps-power.trickip.ORG|hompyfile.%50%41ra%4e.com/MINIHOME_138595|%50r%65%73%68%4f%4d%65.net|fjiasjedfs.com|hld114.com|misdfs.111n.com|대출)
         # | mmencode -u -q
         # | mmencode -u -b
         http://www.procmail.org/
         http://trade.chonbuk.ac.kr/~leesl/procmail/
  • ProcMailSample1 . . . . 9 matches
         |/usr/bin/mmencode -u -q
         |/usr/bin/mmencode -u -b
         |/usr/bin/formail -c | /usr/bin/hcode -dk -m
         #|/usr/bin/formail -c | /usr/bin/hcode -dk -m
         |/usr/bin/formail -c | /usr/bin/hcode -dk -m
         |/usr/bin/formail -c | /usr/bin/hcode -dk -m
         * ^Subject: http://www.pak.gov.pk$
         --> from http://www.superuser.co.kr/home/superuserboard/view.html?id=2668&code=sendmail&start=60&position=
  • WSDL문서의구조 . . . . 9 matches
         <message name="LottoIF_getLottoNumbersResponse">
          <output message="tns:LottoIF_getLottoNumbersResponse"/>
          <soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="rpc"/>
          <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
          use="encoded"
          namespace="http://localhost:8080/lottows/webservice/wsdl/webservice"/>
          <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
          use="encoded"
          namespace="http://localhost:8080/lottows/webservice/wsdl/webservice"/>
          <soap:address location="http://localhost:8080/lottows/webservice"/>
  • javadoc . . . . 9 matches
          *[^http://java.sun.com/javase/6/docs/api/ J2SE 6]
          *[^http://java.sun.com/j2se/1.5.0/docs/api J2SE 1.5.0]
          *[^http://java.sun.com/j2se/1.4.2/docs/api J2SE 1.4.2]
          *[^http://java.sun.com/j2se/1.3/docs/api J2SE 1.3.1]
          *[^http://java.sun.com/javaee/5/docs/api/ Java EE 5]
          *[^http://java.sun.com/j2ee/1.4/docs/api/index.html J2EE 1.4]
          *[^http://java.sun.com/j2ee/sdk_1.3/techdocs/api/index.html J2EE 1.3]
          *[^http://java.sun.com/j2ee/sdk_1.2.1/techdocs/api/index.html J2EE 1.2.1]
          *[^http://java.sun.com/webservices/docs/2.0/api/index.html JWSDP 2.0]
  • procmail . . . . 9 matches
         [mmencode]를 이용하여 quoted-printable이나 base64등으로 encodeing된 메일을 디코딩할수 있으며 [formail]툴을 이용하여 메일헤더등의 메일형식을 바꿀 수 있다.
          * w : 필터나 프로그램이 작업을 종료하고 그의 exitcode를 체크한다.(보통은 무시) 만일 필터가 실패로 끝나면 텍스트에 필터가 적용되지 않는다.
          * ? : 사용하는 프로그램의 exitcode를 사용한다.
         * (8282gogo@gmail.com|my\.%6e%45t%69%41%6e\.com/%7Ejungmeod9|my.%6e%45ti%61n.com/%7Enooknook|ahjetr.servehttp.com|chg.serveftp.com|%79%61%68%6f%6f.%6d%69%73%65%63%75%72%65.%63%6f%6d|kjhkk.redirectme.net|hompyfile.%70%61%52%61%6e.com|vita.kyed.com|www.%73%4fm%41%63%54%68.com|hompyfile.%50a%52%41%4e.com|defasuhekinmadin.com|greptimeloans.com|5656fy.com|ps-power.trickip.ORG|hompyfile.%50%41ra%4e.com/MINIHOME_138595|%50r%65%73%68%4f%4d%65.net|fjiasjedfs.com|hld114.com|misdfs.111n.com|대출)
         # | mmencode -u -q
         # | mmencode -u -b
         http://www.procmail.org/
         http://trade.chonbuk.ac.kr/~leesl/procmail/
  • 모바일관련현황 . . . . 9 matches
          * KT는 아이폰이 출시된 이후(2009.12)부터 2010년 1월까지 약 2개월 동안 전체 휴대폰 트래픽이 약 2.2배 증가하였다.(2009.1~2009.11 대비) 스마트폰만을 대상으로 할 때 122.4배가 증가하였다. ([http://mobizen.pe.kr/917?category=3 방송통신위원회])
          * 올해 상반기 17개 시중 은행이 모바일 뱅킹 표준 모델을 개발, 서비스에 나설 예정.모바일 뱅킹은 2012년 약 1천200만건으로 늘어나 지난해(187만건)에 비해 660% 증가할 것으로 추산됐다. [http://article.joins.com/article/article.asp?ctg=11&Total_ID=4002748 중앙일보]
          * 아이폰으로 인한 모바일 광고시장이 올해 98억원에서 내년 225억원, 2012년 419억원으로 성장할 것으로 예상됐다. [http://article.joins.com/article/article.asp?ctg=11&Total_ID=4002748 중앙일보]
          * 현재 스마트폰 시장은 모바일 비지니스의 가장 중요한 부분이 되고 있으며 2013년에 이르면 전체 휴대폰 시장의 약 40~50%의 점유율을 차지할것이라는 의견이 지배적이다. [네오비스 http://www.neovis.net/blog_post_180.aspx]
          * 작년 말부터 시작된 스마트폰의 광풍은 국내 삼성 옴니아 시리즈와 애플의 아이폰이 그 포문을 열었으며 이와 함께 국내 최초 안드로이드폰인 모토로라 드로이드가 출시되었고 이어 삼성, LG 역시 안드로이드폰을 공개하면서 그 관심은 연일 최고치를 올리고 있다. [http://kr.aving.net/news/view.php?articleId=147870&mn_name=news&cateId=01_22 Aving]
          * 스마트폰 판매 예상 그래프([http://www.xchart.net/P000009033 메리츠 증권사 예측])
          * 2010.2.10 현재 국내 스마트폰 단말별 가입자 현황([http://mobizen.pe.kr/914 머니투데이])
          * 국내 스마트폰 판매 추이([http://mobizen.pe.kr/914 디지털타임스])
          * 국내 스마트폰 출시 예정 단말 종류([http://mobizen.pe.kr/906?category=3 디지털타임스])
  • CSSTools . . . . 8 matches
          * Style Master - http://www.westciv.com
          * Top Style Pro - http://www.bradsoft.com
          * XStandard Editor - http://www.xstandard.com
          * CSS Tab Designer - http://www.style-sheets.com
          * W3C CSS Validator - http://jigsaw.w3.org/css-validator
          * Web Developer(파이어폭스 확장기능) - http://chrispederick.com/work/webdeveloper
          * Web Accessiblity 툴바 - http://www.vinfoaxia.com/tools/wat/ko
          * HTML Tidy(HTML 문법체크) - http://tidy.sourceforge.net
  • JWSDP동적호출인터페이스모델클라이언트 . . . . 8 matches
         QName serviceQName = new QName("http://java.sun.com/xml/ns/jax-rpc/wsi/wsdl/webservice", "Webservice");
         QName portQName = new QName("http://java.sun.com/xml/ns/jax-rpc/wsi/wsdl/webservice", "CalIFPort");
         call.setTargetEndpointAddress("http://localhost:8080/cal/webservice");
          , "http://schemas.xmlsoap.org/soap/encoding/");
          new QName("http://java.sun.com/xml/ns/jax-rpc/wsi/wsdl/webservice", "plus")
          , new QName("http://www.w3.org/2001/XMLSchema", "int")
          , new QName("http://www.w3.org/2001/XMLSchema", "int")
         call.setReturnType(new QName("http://www.w3.org/2001/XMLSchema", "int"));
  • LogbackLoglevelChangeAtRuntime . . . . 8 matches
         https://github.com/gimslab/logback-dynamic-level-change
         $ http -b :8080/loggers
         org.apache.coyote.http11.Http11NioProtocol WARN WARN
         $ http -b :8080/loggers?all
         $ http -b :8080/loggers?testLog
         $ http -b PUT :8080/loggers/com.gimslab.log4jexam.log4jexam.pkga/level/DEBUG
         http -b PUT :8080/loggers/ROOT/level/OFF
         http -b DELETE :8080/loggers/com.gimslab.log4jexam.log4jexam.pkga/level
  • Sapient AI Test Coder Review as a Spock User - 20231015(Su) . . . . 8 matches
         === Code Testing의 목적 ===
          - 리팩토링에 들어가는 부담을 크게 줄여주어 production code의 구조와 가독성을 개선시켜 나가는데 도움을 줌
          - Production code에 대한 설명기능
          - code를 읽는 사람들이 더 쉽고 자세히 이해하는데 도움을 줌
          - test code뿐 아니라 실행 결과의 가독성이 높아 maintainability가 높다
          - test code역시 production code와 마찬가지로 한번 만들고 계속 사용하는 코드가 아니라
          - private method, class에 대해 test code에서 직접 access 가능
          - private method 및 class를 지원하지 않아 production code를 수정해야 하는 경우도 있음
  • UbuntuOnMacbookpro . . . . 8 matches
         ! keycode 64 is the left alt key
         keycode 64 = Super_L
         ! key code 133 is the left command key
         keycode 133 = Alt_L Meta_L
         ! key code 134 is the right command key
         keycode 134 = Alt_R Meta_R
         ! keycode 108 is the right alt key
         keycode 108 = Control_R
  • 해킹툴 . . . . 8 matches
         cain & Abel : 윈도우용 종합 해킹툴 http://www.oxid.it
         achilles : http 트래픽 가로채서 조작 가능, 로컬pc의 웹프락시로 동작
         IE 플러그인 : ieHTTPHeadersSetup.exe from [^http://www.blunck.info/iehttpheaders.html]
         http://johnny.ihackstuff.com
         http://googleguide.com
         http://www.google.co.kr/help/cheatsheet.html
         [^http://www.foundstone.com] 에서 만든 윈도우에서 작동되는 포트 스캐너입니다. 포트 스캐너를 이용하여 시스템의 열린 포트를 점검할 수 있습니다.
  • HelpOnFormatting . . . . 7 matches
         Note that within code sections, both inline and display ones, any wiki markup is ignored. An alternative and shorter syntax for `inlined code` is to use backtick characters.
         An {{{inline code sequence\}}} has the start and end markers on the same line. Or you use `backticks`.
         A code display has them on different lines: {{{
         /!\ In the above example, we "escaped" the markers for source code sequences by inserting \ character before the curly braces.
         An {{{inline code sequence}}} has the start and end markers on the same line. Or you use `backticks`.
         A code display has them on different lines: {{{
         === ColorizedSourceCode ===
  • RssMacro . . . . 7 matches
         [[RSS(http://chemie.skku.ac.kr/wiki/wiki.php/RecentChanges?action=rss_rc)]]
         [[RSS(http://chem.skku.ac.kr/~kle/moin/RecentChanges?action=rss_rc)]]
         [[RSS(http://kz.mpecc.com/moniwiki/wiki.php?action=rss_rc&dummy=1)]]
         [[RSS(http://chemie.skku.ac.kr/wiki/wiki.php/RecentChanges?action=rss_rc)]]
         [[RSS(http://wikix.org/ko/mymisc/rss?10)]]
         [[RSS(http://kldp.org/root/rdf.xml)]]
         [[Rss(http://chemie.skku.ac.kr/wiki/wiki.php/BlogChanges?action=blogrss&all=1)]]
  • docker-compose . . . . 7 matches
          - ./nginx/code:/code
          - ./nginx/code:/code
         drwxr-xr-x 2 xxx xxx 4096 Jul 23 00:37 code
         nginx/code:
          root /code;
  • IsbnMap . . . . 6 matches
         http://image.wowbook.com/book/large_image/$ISBN2.gif
         Tmecca http://www.tmecca.co.kr/search/isbnsearch.html?isbnstr=
         AladdinMusic http://www.aladdin.co.kr/music/catalog/music.asp?ISBN= http://image.aladdin.co.kr/cover/cdcover/$ISBN_1.jpg @/cdcover/(\d+)_1\.jpg@
         IMDB http://us.imdb.com/title/tt$ISBN/ http://ia.imdb.com/media/imdb/$ISBN @/imdb/([^.]+m\.jpg)@
  • My Keyboard Layout . . . . 6 matches
         [^http://www.keyboard-layout-editor.com/#/gists/d5b8b5c97a270edb46f640fced184503 attachment:keyboard-layout-anne-pro-2-default.png?width=640]
         [^http://www.keyboard-layout-editor.com/#/gists/94e00364a8b0fe318804c3034f0f8207 attachment:keyboard-layout-anne-pro-2-mac-fn1.png?width=640]
         [^http://www.keyboard-layout-editor.com/#/gists/09b3803316ddcb14d0359f52dedbac00 attachment:keyboard-layout-macbook-pro-default.png?width=640]
         [^http://www.keyboard-layout-editor.com/#/gists/181c639a521b067e0b6d3b0ff712194d attachment:keyboard-layout-macbook-pro-fn.png?width=640]
         [^http://www.keyboard-layout-editor.com/#/gists/d2d660dacbdf813d78eeacfb59ab8e2a attachment:normal_profile_2_my_ducky_one_2_mini.png?width=640]
         [^http://www.keyboard-layout-editor.com/#/gists/9b3b8e12d158ac526f18a99cd820a14d attachment:fn_profile_2_my_ducky_one_2_mini.png?width=640]
  • PMD . . . . 6 matches
         PMD scans Java source code and looks for potential problems like:
          * Dead code - unused local variables, parameters and private methods
          * Suboptimal code - wasteful String/StringBuffer usage
          * Duplicate code - copied/pasted code means copied/pasted bugs
         from http://pmd.sourceforge.net/
  • Spring3.0특징요약 . . . . 6 matches
         captured from http://www.springinaction.com
          http://localhost:8080/spitter/spittleList.htm?username=habuma
          http://localhost:8080/spitter/habuma/list
          public String displayHomePage(HttpServletRequest request) {
          public String displayHomePage(HttpServletRequest request) {
          Returns HTTP 304 if content is unmodified
         === HTTP Method Conversion ===
         HTTP defines four methods: GET, POST, DELETE, and PUT
         Spring 3’s HiddenHttpMethodFilter fixes that
          <filter-class> org.springframework.web.filter.HiddenHttpMethodFilter </filter-class>
         POST를 사용하면서 hidden parameter로 Method를 명시하면 해당 Method로 변환해주는 HiddenHttpMethodFilter 제공
         === HTTP Methods in Spring MVC ===
          Spring MVC form tags support hidden HTTP methods
          Controllers can handle all HTTP methods
          Chooses a view based on HTTP Accepts header, JAF
          template.getForObject("http://localhost:8080/spitter/users/${id}", String.class, userId);
          template.postForLocation("http://localhost:8080/spitter/users/${id}", user, userId);
          template.delete("http://localhost:8080/spitter/users/${id}", userId);
  • XMLNamespace . . . . 6 matches
         <{http://a.com/xml/user}title>
         <{http://a.com/xml/cd}title>
         <user:userlist xmlns:user="http..." xmlns:cdlist="http://...">
         <user:userlist xmlns="http..." xmlns:cdlist="http://...">
  • 모바일사이트모음 . . . . 6 matches
          * http://m.naver.com
          * http://google.com/m
          * http://m.daum.net
          * http://m.kbs.co.kr
          * http://m.sbs.co.kr
          * http://m.facebook.com/
  • ApacheWebServerInstall . . . . 5 matches
         httpd.exe -k install
         httpd.exe -k uninstall
         httpd.exe -k start
         httpd.exe -k stop # or shutdown
         httpd.exe -k restart
  • HttpsTest.java . . . . 5 matches
         [java_https] /
         ssl 소켓 위에서 http 호출 예제
         package com.gimslab.https_test;
         public class HttpsTest {
          new HttpsTest().httpsGetTest2();
          private void httpsGetTest2() throws Exception {
          String str = "GET / HTTP/1.1\n\n";
  • InstallCert.java . . . . 5 matches
         #keywords java, https, cert
         [java_https] /
         package com.gimslab.https_test;
          sha1.update(cert.getEncoded());
          md5.update(cert.getEncoded());
  • InterIconMap . . . . 5 matches
         Hello http://chemie.skku.ac.kr/wiki/imgs/moni2/bookmark.png 16x16
         WkPark http://technoserv.no-ip.org:8080/jabber/wkpark@gmail.com 48x25
         http://chemie.skku.ac.kr/wiki/pds/InterIconMap/wkpgmail.png 140x21
         Self http://chemie.skku.ac.kr/wiki/imgs/moni2/bookmark.png 16x16
         TwinPages http://chemie.skku.ac.kr/wiki/imgs/moni2/inter.png 16x16
  • JavascriptLibrary . . . . 5 matches
         [Utf8 Encoder Decoder Javascript]
         [^http://script.aculo.us/] - about user interface
         [^http://developer.yahoo.com/yui/] - YUI : Yahoo! UI library
         [http://www.datejs.com/]
  • Raspberry Pi 5 구매 - 20240331 . . . . 5 matches
          - https://www.coupang.com/vp/products/7951307334?vendorItemId=88995317765&sourceType=MyCoupang_my_orders_list_product_title
          - https://www.coupang.com/vp/products/7307806799?vendorItemId=85847947085&sourceType=MyCoupang_my_orders_list_product_title
          - https://www.coupang.com/vp/products/7935074296?vendorItemId=88888955054&sourceType=MyCoupang_my_orders_list_product_title&isAddedCart=
          - https://www.coupang.com/vp/products/7340248792?vendorItemId=86904356261&sourceType=MyCoupang_my_orders_list_product_title
          - https://www.coupang.com/vp/products/1942562672?vendorItemId=71284861491&sourceType=MyCoupang_my_orders_list_product_title
  • Struts_configRuntimeReload . . . . 5 matches
         import javax.servlet.http.HttpServletRequest;
         import javax.servlet.http.HttpServletResponse;
          protected void process(HttpServletRequest request, HttpServletResponse response)
          dispatcher.forward(request, response);
          super.process(request, response);
  • UbuntuKeyboardMapping . . . . 5 matches
         find keycode ==> {{{xev}}}
         ! from http://xahlee.info/
         ! keycode 9 = Escape NoSymbol Escape
         ! keycode 66 = Caps_Lock NoSymbol Caps_Lock
         keycode 66 = Escape NoSymbol Escape
  • UnicodeHexEncoding . . . . 5 matches
         [[unicode]]
         UTF-8과 같은 Unicode data를 인터넷상에서 안전하게 전송하기 위해 많이 쓰임.
         https://onlinetools.com/unicode/convert-unicode-to-hex
  • WikiSandBox . . . . 5 matches
          1. Check out, http://www.halfbakery.com, for instance http://www.halfbakery.com/idea/Jehovah_27s_20Witness_20Delivery#979686222-5-1
         http://purl.net/wiki/moin/ [http://www.python.org/ Python]
         MetaLink:http://www.slashdot.org WikiPedia:Hello+World
  • encodeURL . . . . 5 matches
         String encodeURL(String url) {
          sb.append(java.net.URLEncoder.encode(name, "UTF-8"));
          sb.append(java.net.URLEncoder.encode(val.substring(1), "UTF-8"));
  • fonera . . . . 5 matches
         from http://juxh2p.egloos.com/5472545
          * Check if you can connect to 'MyPlace' wireless signal and if you can access the Management Console at http://192.168.10.1Check if everything is back to its default value, so you can see whether or not the reset has been successful.
         http://www.parkoz.com/zboard/view.php?id=my_tips&page=1&sn1=&divpage=3&sn=off&ss=on&sc=off&keyword=fon&select_arrange=headnum&desc=asc&no=13063
         http://www.gargoyle-router.com/download.php
         http://www.winpcap.org/ winpcap 프로그램이 설치되어 있어야 정상 작동함.
  • ftp_http_speed_test . . . . 5 matches
         [web]에서 [upload]작업시 [ftp]를 사용하는것이 좋은지 [http]를 사용하는 것이 좋은지 비교하기 위해 테스트를 수행해봤다.
         ftp http 전송속도 테스트
         = http =
         = 웹에서 파일 업로드 할때 http와 ftp 방식의 차이 비교 =
         [webUpload_ftp_http]
  • httpie . . . . 5 matches
         cf. https://httpie.io/docs#examples
         $ http -f POST ':10001/api/test' key='abc' value='cddd'
         $ http --raw '["a","b","c"]' POST :10001/api/test
         $ echo -n '["a","b","c"]' | http POST :10001/api/test
  • mmencode . . . . 5 matches
         = mimencode
         # decode quoted printable
         mmencode -u -q
         # decode base64
         mmencode -u -b
  • moniwiki . . . . 5 matches
         [^http://wiki.ktug.org/wiki/wiki.php/HelpOnEditing]
          * http://gamgil.blogspot.com/2009/11/moniwiki-%EC%82%AC%EC%9A%A9%EB%B2%95-%EB%8F%84%EC%9B%80%EB%A7%90-tip.html
          * http://memorecycle.com/w/wiki.php/%EB%AA%A8%EB%8B%88%EC%9C%84%ED%82%A4/QnA
          * http://wiki.ktug.org/wiki/wiki.php/HelpOnEditing
          * http://www.databaser.net/moniwiki/wiki.php/MoniWikiPlugin
  • sweet . . . . 5 matches
         쥬니어 네이버 [http://jr.naver.com/]
         신흥초등학교 [http://www.kunpo-shinhung.es.kr]
         Google [http://google.com]
         Daum [http://daum.net]
         Naver [http://naver.com]
  • updateddns . . . . 5 matches
         https://www.dnszi.com/
         curl 'http://ddns.dnszi.com/set.html?user=AAA&auth=PPP&domain=gimslab.com&record=wiki'
         http://dnsever.com (유료)
         curl --user user_id:key 'http://dyna.dnsever.com/update.php?host\[h.gimslab.com\]'
         #curl --user user_id:key 'http://dyna.dnsever.com/update.php?host\[h.gimslab.com\]=offline'
  • 국가코드 . . . . 5 matches
         http://www.iso.org/iso/country_codes/iso_3166_code_lists/english_country_names_and_code_elements.htm
         Country names ISO 3166-1-alpha-2 code
  • AI Tech . . . . 4 matches
         이미지 생성 AI 활용 - https://wikidocs.net/book/12852
         OpenAI 프로젝트 - https://wikidocs.net/book/12872
         자동화 아키텍처 설계 - https://wikidocs.net/218460
         한글 학습 데이터 ko-alpaca - https://huggingface.co/datasets/royboy0416/ko-alpaca/viewer/default/train
  • Axis . . . . 4 matches
         [^http://ws.apache.org] Apache Web Services Project
         [^http://ws.apache.org/axis] Axis 다운로드
         http://localhost:8080/axis/
         http://localhost:8080/axis/services/Version?method=getVersion
  • GoogleAIYVoiceKit . . . . 4 matches
         https://www.raspberrypi.org/forums/viewtopic.php?t=193379
         https://dl.google.com/dl/aiyprojects/voice/aiyprojects-latest.img.xz
         http://www.lions-wing.net/maker/voice/voice.html
         --https://dl.google.com/dl/aiyprojects/aiyprojects-latest.img.xz--
  • JavaFileUpload-ClientSide . . . . 4 matches
         [java code snippet]
         HttpURLConnection conn = null;
         String urlString = "http://localhost:8080/FileUpload/requestupload";
         HttpURLConnection conn = null;
         String urlString = "http://localhost:8080/FileUpload/requestupload";
          conn = (HttpURLConnection) url.openConnection();
          System.out.println("Server response is: " + str);
          System.out.println("From (ServerResponse): " + ioex);
  • JqueryPlugins . . . . 4 matches
         http://malsup.com/jquery/block/
         http://www.malsup.com/jquery/form/
         http://www.stilbuero.de/2007/02/05/tabs-plugin-update-support-for-unobtrusive-ajax/
         http://davehauenstein.com/blog/archives/28
  • KernelUpgradeTo4.18 . . . . 4 matches
         xps13:$ wget http://kernel.ubuntu.com/~kernel-ppa/mainline/v4.18.5/linux-headers-4.18.5-041805_4.18.5-041805.201808241320_all.deb
         xps13:$ wget http://kernel.ubuntu.com/~kernel-ppa/mainline/v4.18.5/linux-headers-4.18.5-041805-generic_4.18.5-041805.201808241320_amd64.deb
         xps13:$ wget http://kernel.ubuntu.com/~kernel-ppa/mainline/v4.18.5/linux-image-unsigned-4.18.5-041805-generic_4.18.5-041805.201808241320_amd64.deb
         xps13:$ wget http://kernel.ubuntu.com/~kernel-ppa/mainline/v4.18.5/linux-modules-4.18.5-041805-generic_4.18.5-041805.201808241320_amd64.deb
  • Known AI Models . . . . 4 matches
         Open Ko-LLM LeaderBoard - https://huggingface.co/spaces/upstage/open-ko-llm-leaderboard
         code llama
         Open Ko-LLM LeaderBoard - https://huggingface.co/spaces/upstage/open-ko-llm-leaderboard
         Ollama Models - https://ollama.ai/library?sort=newest
  • QMK Open Source Keyboard Firmware . . . . 4 matches
         https://github.com/qmk/
         preset 없는 기판 적용 방법: https://youtu.be/nEZYvAqKtN4
         QMK Configurator: https://config.qmk.fm/
         https://kbfirmware.com/
  • Readable Asynchronous Programming . . . . 4 matches
         https://www.youtube.com/watch?v=jT2gHPQ4Z1Q
         https://nexocode.com/blog/posts/reactive-streams-vs-coroutines/
         https://github.com/Kotlin/kotlinx.coroutines/blob/master/reactive/kotlinx-coroutines-reactive/README.md
  • SPF . . . . 4 matches
         http://spf.pobox.com/wizard.html
          * http://spf.pobox.com/sendmail-milter-INSTALL.txt
          * http://www.brandonhutchinson.com/Installing_Milter-SPF_with_Sendmail.html
          * http://www.rootman.co.kr/pds/linux/SPF_install_using.pdf
  • ToolsForEnglishLearning . . . . 4 matches
         https://skell.sketchengine.co.uk
         https://www.clozemaster.com
         https://blog.oxforddictionaries.com/
         https://www.etymonline.com
  • WikiSlide . . . . 4 matches
         || {{{http://www.web.de/}}} || http://www.web.de/ ||
         || {{{http://www.pythonwiki.de/wiki/img/moinmoin.gif}}} || http://www.pythonwiki.de/wiki/img/moinmoin.gif ||
  • clojure . . . . 4 matches
         http://www.4clojure.com/problem/79
         my solution : https://www.refheap.com/114220
         http://www.4clojure.com/
         https://www.gitbook.com/book/eunmin/clojure-for-beginners
  • linux . . . . 4 matches
          * [^http://www.lug.or.kr] - 한국리눅스유저그룹
          * [^http://www.superuser.co.kr] - 리눅스포탈
          * [^http://ftp.superuser.co.kr] - 리눅스관련 파일
          * [^http://www.linuxworldkorea.com]
  • m . . . . 4 matches
         http://gmail.com
         http://google.com
         http://mail.magicn.com
         http://ai.kaist.ac.kr/ahnmatae/
  • myProcmail_20060918 . . . . 4 matches
         * (8282gogo@gmail.com|my\.%6e%45t%69%41%6e\.com/%7Ejungmeod9|my.%6e%45ti%61n.com/%7Enooknook|ahjetr.servehttp.com|chg.serveftp.com|%79%61%68%6f%6f.%6d%69%73%65%63%75%72%65.%63%6f%6d|kjhkk.redirectme.net|hompyfile.%70%61%52%61%6e.com|vita.kyed.com|www.%73%4fm%41%63%54%68.com|hompyfile.%50a%52%41%4e.com|defasuhekinmadin.com|greptimeloans.com|5656fy.com|ps-power.trickip.ORG|hompyfile.%50%41ra%4e.com/MINIHOME_138595|%50r%65%73%68%4f%4d%65.net|fjiasjedfs.com|hld114.com|misdfs.111n.com|대출)
         # | mmencode -u -q
         # | mmencode -u -b
          | mmencode -u -q
  • sendmail . . . . 4 matches
         1. download from http://sendmail.org
          * [http://sendmail.org/doc/sendmail-current/doc/op/op.pdf Installation and Operation Guide (pdf)]
          * http://sendmail.org
          * http://hikiki.net/comnote/os/linux/sendmail/index.html
  • unicode . . . . 4 matches
         [unicode hex encoding]
         [java unicode encoder decoder]
  • upload . . . . 4 matches
         = 웹에서 파일 업로드 할때 http와 ftp 방식의 차이 비교 =
         [webUpload_ftp_http]
         = ftp와 http를 이용한 파일 전송 속도 측정 결과 =
         [ftp_http_speed_test]
  • webUpload_ftp_http . . . . 4 matches
         웹에서 file [upload]를 구현할때는 일반적으로 http를 쓴다. ftp를 쓰게 되면 여러가지 단점이 있기 때문이다. 그리고 속도의 차이도 거의 없는것으로 알고 있다.
         = http 장점 =
         = ftp와 http를 이용한 파일 전송 속도 측정 결과 =
         [ftp_http_speed_test]
  • 개발툴 . . . . 4 matches
          * https://github.com/dbcli/mycli
          * https://dbeaver.io
          * WinMerge : 파일비교(다양한기능) http://winmerge.org/
          * Compare It : 파일비교(빠름) http://www.grigsoft.com/
  • 검증-웹표준 . . . . 4 matches
         [^http://validation.w3.org]
         [^http://validator.kldp.net]
         [^http://jigsaw.w3.org/cssvalidator/]
         [^http://www.iabf.or.kr/web/kadowah.asp]
  • 미니노트북 . . . . 4 matches
          *[^http://cafe.empas.com/mininote] - 미니노트북 유저모임(미노카페) JVC AirWorks 위주
          *[^http://www.walkpc.com/] - 미니노트북을 위한 포럼
          *[^http://cafe.naver.com/fpnbug.cafe] - naver p7120 cafe
          *[^http://board2.nbinside.com/zb40/zboard.php?id=jvc] - JVC관련 게시판
  • 한글 . . . . 4 matches
         [iconv] - unix code set conversion tool
         [Java Unicode Encoder Decoder]
  • 4.취약점분석-해킹공격9단계 . . . . 3 matches
         [^http://www.packetstormsecurity.org]
         [^http://www.frsirt.com/english] exploit 공지
         [^http://www.cve.mirte.org/cve]
  • AdobeReader에서Pdf파일외부에북마크하기 . . . . 3 matches
         http://oosoom.org/167
         http://oreilly.com/catalog/pdfhks/chapter/hack15.pdf
         http://oreilly.com/catalog/pdfhks/chapter/hack96.pdf
  • AndroidApp . . . . 3 matches
          * android-vnc-viewer : http://code.google.com/p/android-vnc-viewer/
          * Remote VNC : http://www.toremote.com/
  • BusinessRuleEngine . . . . 3 matches
         Should I use a Rules Engine? - https://martinfowler.com/bliki/RulesEngine.html
         http://thedailywtf.com/articles/soft_coding
         https://stackoverflow.com/questions/775170/when-should-you-not-use-a-rules-engine
  • CI . . . . 3 matches
         from http://www.sereform.com/?p=234
          * 번역 : http://pragmaticstory.com/224
          * 원문 : http://www.martinfowler.com/articles/continuousIntegration.html
  • Chat Based AI Service . . . . 3 matches
         https://wrks.ai
         https://wrtn.ai
         https://www.phind.com/
  • EclipseJavaCodeStyleFormatter . . . . 3 matches
         [eclipse] java code style
         [spring eclipse code formatter]
         <setting id="org.eclipse.jdt.core.formatter.comment.format_source_code" value="true"/>
  • EclipsePlugin . . . . 3 matches
         uml : http://www.objectaid.com/
         MyBatisLink : Java code에서 MyBatis 쿼리 탐색 http://sourceforge.net/p/mybatislink/wiki/Home/
  • GoogleWebToolkit . . . . 3 matches
          * gwt 패키티에 포함된 샘플하나를 실행시켜서 만든 예제하나를 서버에 올려봤습니다. 대단하네요. 이렇게 간단히 구현되다니... [^http://hikiki.net/comnote/web/ajax/samples/com.google.gwt.sample.kitchensink.KitchenSink/KitchenSink.html]
         [^http://code.google.com/webtoolkit/]
  • HttpServletRequest . . . . 3 matches
         http://gimslab.com:8001/z/zz.jsp?asdlkj=sdf&sdlkjxxx
         request.getRequestURL() = http://gimslab.com:8001/z/zz.jsp
         request.getProtocol() = HTTP/1.1
         request.getScheme() = http
  • InterWiki . . . . 3 matches
          * [http://panoptic.com/wiki/aolserver AOL Server Wiki]
          * [http://seattlewireless.net/ SeattleWireless]
          * [http://pikie.darktech.org/cgi/pikie.py PikiePikie]
  • JSLibrary . . . . 3 matches
         Store.js - https://github.com/marcuswestin/store.js
         Lawnchair - http://brian.io/lawnchair/
         http://jster.net/category/storage-libraries
  • Maven . . . . 3 matches
         from http://maven.apache.org/index.html
         from http://maven.apache.org/index.html
         from http://maven.apache.org/index.html
  • MobileSiteDOCTYPE . . . . 3 matches
         <!DOCTYPE html PUBLIC "-//WAPFORUM//DTD XHTML Mobile 1.2//EN" "http://www.wapforum.org/DTD/xhtml-mobile12.dtd">
         <html xmlns="http://www.w3.org/1999/xhtml" lang="ko" xml:lang="ko">
         <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  • MoniWikiTheme . . . . 3 matches
         http://chemie.skku.ac.kr/wiki/wiki.php/TwinPages?action=theme&theme=kz
         http://chemie.skku.ac.kr/wiki/wiki.php/TwinPages?action=theme&theme=blog
         http://chemie.skku.ac.kr/wiki/wiki.php/TwinPages?action=theme&theme=samplehome
  • PatternTemplate . . . . 3 matches
         http://www.agcs.com/graphics/patterns/sketch.gif
         Sample implementation of the pattern, usually code, pseudo code, etc.
  • SCM . . . . 3 matches
         Source Code Management
         Revision control, also known as version control, source control or (source) code management (SCM), is the management of changes to documents, programs, and other information stored as computer files.
         from http://en.wikipedia.org/wiki/Source_Control_Management
         from http://scm.tigris.org/
  • SpringCloudStream . . . . 3 matches
         https://github.com/gimslab/spring-cloud-stream-factorial
         https://github.com/gimslab/spring-cloud-stream-error-handling
         https://github.com/gimslab/spring-cloud-stream-kafka
  • SpringEclipseCodeFormatter . . . . 3 matches
         [spring] [eclipse] code formatter
         http://www.springframework.org/files/active/0/spring-eclipse-code-conventions.xml
  • Subversion . . . . 3 matches
          * Subversion 사용 HOWTO - http://www.pyrasis.com/main/Subversion-HOWTO
          * SVN book - http://svnbook.red-bean.com/
          * http://subversion.apache.org/
  • SunJavaSystemWebServer . . . . 3 matches
         http://docs.sun.com/app/docs/doc/821-0988/funei?l=ko&a=view
         http://docs.sun.com/app/docs/doc/821-1403/gduwv?l=ko&a=view
         ${server_root}/https-admserv/config/admpw
  • Sybase . . . . 3 matches
          * [http://download.sybase.com/pub/jConnect/jConnect-6_05.zip jConnect 6.05 download (U.S. download) (EBF 13044)]
          * [http://download.sybase.com/pub/jConnect/jConnect-5_5.zip jConnect 5.5 download (U.S. download) (EBF 13045)]
         from http://www.sybase.com/
  • Utf8EncoderDecoderJavascript . . . . 3 matches
          encode : function (string) {
          var c = string.charCodeAt(n);
          utftext += String.fromCharCode(c);
          utftext += String.fromCharCode((c >> 6) | 192);
          utftext += String.fromCharCode((c & 63) | 128);
          utftext += String.fromCharCode((c >> 12) | 224);
          utftext += String.fromCharCode(((c >> 6) & 63) | 128);
          utftext += String.fromCharCode((c & 63) | 128);
          decode : function (utftext) {
          c = utftext.charCodeAt(i);
          string += String.fromCharCode(c);
          c2 = utftext.charCodeAt(i+1);
          string += String.fromCharCode(((c & 31) << 6) | (c2 & 63));
          c2 = utftext.charCodeAt(i+1);
          c3 = utftext.charCodeAt(i+2);
          string += String.fromCharCode(((c & 15) << 12) | ((c2 & 63) << 6) | (c3 & 63));
         v = Utf8.encode(qry);
  • WebStorage . . . . 3 matches
         ex) http://wiki.gimslab.com/html5/webStorage/
         http://dev.w3.org/html5/webstorage/
         http://dev.opera.com/articles/view/web-storage/
  • WikiKeyword . . . . 3 matches
          * http://www.kwiki.org/?KwikiKeywords : Kwiki use keywords. Keywords are listed in the left sidebar and each keywords link to another pages related with it.
          * http://search.wikicities.com/wiki/Help:Keyword
          * http://openclipart.org/cgi-bin/wiki.pl?Keyword_Organization
  • WikiWyg . . . . 3 matches
         http://www.ajaxian.com/archives/2005/09/wikiwyg_rich_te.html
         http://kwiki.org/?KwikiFormattingRules
         http://wiki.splitbrain.org/wiki:tips:wikiwyg
  • WindowDraggingInMacByClickingOnAnyPartOfIt(asOnLinux) . . . . 3 matches
         cf. or you can just use this app https://github.com/dmarcotte/easy-move-resize
         https://apple.stackexchange.com/questions/321918/move-window-by-clicking-on-any-part-as-on-linux
         ref. https://gimslab.tistory.com/entry/%EB%A7%A5-%EC%9C%88%EB%8F%84%EC%9A%B0-%EC%95%84%EB%AC%B4-%EB%B6%80%EB%B6%84%EC%9D%B4%EB%82%98-%EC%9E%A1%EA%B3%A0-%EC%9B%80%EC%A7%81%EC%9D%B4%EA%B8%B0
  • XML스키마 . . . . 3 matches
         <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" attributeFormDefault="unqualified">
         <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" attributeFormDefault="unqualified">
         <친구들 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="test.xsd">
  • csv . . . . 3 matches
         from http://blog.gimslab.com/tag/csv
         [^http://www.creativyst.com/Doc/Articles/CSV/CSV01.htm#FileFormat]
         [^http://en.wikipedia.org/wiki/Comma-separated_values]
  • font . . . . 3 matches
         Bitstream Vera Sans Mono : http://www.gnome.org/fonts/
         http://nextcontext.tistory.com/16
         http://gyuha.tistory.com/245
  • http response code . . . . 3 matches
         Response code decision tree : http://i.stack.imgur.com/whhD1.png
         From http://i.stack.imgur.com/
  • jaxrpc-ri.xml . . . . 3 matches
          xmlns="http://java.sun.com/xml/ns/jax-rpc/ri/dd"
          targetNamespaceBase="http://localhost:8080/mytestws/webservice/wsdl"
          typeNamespaceBase="http://localhost:8080/mytestws/webservice/type">
  • 기존의웹사이트와웹표준준수웹사이트비교 . . . . 3 matches
         invalid, inaccessible, semantically incorrect code
         valid code : 빠르게 표시되며 원래의도대로 표시됨
         accessible code : 접근성, 다양한 플랫폼, 메타데이터
  • 모바일사이트예시 . . . . 3 matches
         http://m.naver.com
         http://m.daum.net
         http://m.kbs.co.kr
  • 집단지능 . . . . 3 matches
         [^http://del.icio.us] - 웹페이지 즐겨찾기 공유
         [^http://flickr.com/] - 개인들의 사진을 저장하고 분류 공유 토론
         [^http://www.wikipedia.org/] - 온라인 백과사전
  • 해킹 . . . . 3 matches
         http://www.zone-h.org/ - 해킹된 리스트
         http://www.krcert.or.kr/ - 인터넷 침해 사고 대응 지원 센터
         http://www.spywareguide.com/
  • 2024-04-11(Th) Raspberry Pi 5에 MoniWiki 설치하기(Docker 이용) . . . . 2 matches
         php에 대한 나의 지식이라는 것은 MoniWiki 설치할 때만 spot으로 공부했던 정도라 다시 log를 보고 code를 grep으로 찾아서 perplexity 도움을 받아가며 echo 명령으로 지저분한 디버깅 코드를 넣어 조금씩 고쳐가다가 도저히 내가 하기엔 너무 많은 시간을 써야할 것 같다는 생각이 들어 결국 다른 길을 찾게 되었다.
          return 301 https://$host$request_uri;
  • Anne Pro 2 . . . . 2 matches
         Open Anne Pro: https://openannepro.github.io/
         software download: https://www.hexcore.xyz/
  • Axis로WebService개발하기 . . . . 2 matches
          <arg line="-lhttp://localhost:8080/axis/services/AdminService clientsrc/webservice/math/deploy.wsdd"/>
          <arg line="-lhttp://localhost:8080/axis/services/AdminService clientsrc/webservice/math/undeploy.wsdd"/>
  • BadContent . . . . 2 matches
         # http://www.jayallen.org/comment_spam/
         # http://www.jayallen.org/projects/mt-blacklist
  • BashInstallationOnOsx . . . . 2 matches
         from https://gimslab.tistory.com/m/entry/Install-bash-again-in-your-Mac-osx-why
         라이선스 GPLv3+: GNU GPL version 3 or later <http://gnu.org/license/gpl.html>
  • CountingClosedPolygons . . . . 2 matches
         moved to https://github.com/gimslab/algorithms/tree/master/src/main/kotlin/counting_closed_polygons
         cf. https://hsin.hr/2008/ (Final Exam #2)
  • Decision Tree Regressor Model Sample . . . . 2 matches
         = Code =
         from https://www.kaggle.com/code/gimslabgimslab/exercise-underfitting-and-overfitting/
  • EpsonL3156NetworkIssue-20101129 . . . . 2 matches
         Redirect HTTP to HTTPS : Disabled
         먼저 "Redirect HTTP to HTTPS"를 Disable로 남겨두고 "Encryption Strength"만 한단계씩 올려서 되는대까지 올렸다.
         만일 https가 안되더라도 http로 접근해서 수준을 낮춰야하니까..
  • FoafMacro . . . . 2 matches
         ||[[Foaf(http://internetalchemy.org/iand/foaf.rdf)]]||
         ||[[Foaf(http://internetalchemy.org/iand/foaf.rdf,homepage)]]||
  • FortuneCookies . . . . 2 matches
          * "Perl is executable line noise, Python is executable pseudo-code."
          * Show your affection, which will probably meet with pleasant response.
  • HelpOnXmlPages . . . . 2 matches
         If you have Python4Suite installed in your system, it is possible to save XML documents as pages. It's important to start those pages with an XML declaration "{{{<?xml ...>}}}" in the very first line. Also, you have to specify the stylesheet that is to be used to process the XML document to HTML. This is done using a [http://www.w3.org/TR/xml-stylesheet/ standard "xml-stylesheet" processing instruction], with the name of a page containing the stylesheet as the "{{{href}}}" parameter.
         <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  • HtmlMetaRefresh . . . . 2 matches
         <meta http-equiv="refresh" content="3;url=http://wiki.gimslab.com">
  • Java Code Snippet . . . . 2 matches
         #Keywords java, code, snippet
         ["Code Snippet"]
         [java stream (code snippet)]
  • JavaNCSS . . . . 2 matches
         JavaNCSS is a source measurement suite for Java which produces quantity & complexity metrics for your java source code.
         http://www.kclee.de/clemens/java/javancss/
  • JavaNews . . . . 2 matches
          *[^http://kr.sun.com/developers/event/2006/technologyday_jul.html]
          *[^http://kr.sun.com/developers/javaone/2006/wrapup.html]
  • JavaSeed암호화 . . . . 2 matches
          return seed.decryptAsString(Base64.decode(encryptStr), key.getBytes(), "UTF-8");
          return seed.decryptAsString(Base64.decode(encryptStr), key.getBytes());
  • JavascriptException . . . . 2 matches
         function MyException(msg,errCode)
          this.errCode = errCode;
         URIError - encodeURI() 나 decodeURI()을 잘못된 방법으로 썻을때.
  • Javascript런타임에원격Js호출하기 . . . . 2 matches
         {{{http://gimslab.com/test.js}}} 를 자바스크립트 실행중에 호출하기
          jScript.src = 'http://gimslab.com/test.js';
  • JuniperVPN64bitUbuntu에서CommandLine으로연결하기 . . . . 2 matches
         참조 : http://www.ts.vcu.edu/media/technology-services/content-assets/ts-groups/software/juniper/JVPN_Linux_TwoFactorAuth%281%29.pdf
         ref. https://www.google.co.kr/webhp?sourceid=chrome-instant&ion=1&espv=2&ie=UTF-8#newwindow=1&q=how+to+install+32bit+gcc+on+ubuntu+64
  • JuniperWithOpenconnect . . . . 2 matches
         $ sudo openconnect -C DSID=xxxx --juniper https://gate.site.net
         ref : https://www.infradead.org/openconnect/juniper.html
  • Keychron K9 Pro . . . . 2 matches
         https://www.keychron.com/
          * download: https://www.caniusevia.com/
  • KotlinJpa . . . . 2 matches
         https://github.com/gimslab/kotlin-jpa-exam
         https://github.com/gimslab/kotlin-jpa-exam2
  • MVN . . . . 2 matches
         http://maven.apache.org/
         http://www.mvnrepository.com
  • MobileDevelopment . . . . 2 matches
         https://trends.google.com/trends/explore?geo=US&q=flutter,ionic,%2Fg%2F11h03gfxy9
         http://www.phonegap.com/
  • MoniCalendar . . . . 2 matches
          * 9/12-9/15 <!> KLDP CodeFest
         http://chemie.skku.ac.kr/wiki/monket-calendar/monket-cal/ 테스트
          이것의 비밀은 http://chemie.skku.ac.kr/wiki/monket-calendar/monket-cal/t.html 걍 테이블로 했군요...
  • MoniWiki . . . . 2 matches
         http://sourceforge.net/projects/moniwiki/
         <img src="http://sourceforge.net/sflogo.php?group_id=51905&type=1" alt='SF.net' />
  • MoniWikiMacro . . . . 2 matches
          * 코멘트(댓글) 창 달기 : http://moniwiki.kldp.net/wiki.php/CommentMacro
          * 페이지 하단에 주석 달기(footnotes) : http://moniwiki.kldp.net/wiki.php/FootNoteMacro
  • NSIS . . . . 2 matches
          IEFunctions::SurfTo /NOUNLOAD "http://voc.xxx.xx.kr/"
          IEFunctions::SurfTo /NOUNLOAD "http://voc.xxx.xx.kr/"
  • NewscrapRestarter.java . . . . 2 matches
          * 예: http://x.x.x.x/newscrap/search.php?keyword=&lastdate=20130124&usedate=false&startdate=20130124
          private String BASE_URL = "http://x.x.x.x/newscrap/search.php?keyword=&lastdate=xxxxxxxx"
  • OWASP . . . . 2 matches
         http://www.owasp.org/
         encoding project ([Reform]) for XSS safe code
  • OpenSource . . . . 2 matches
          [^http://www-8.ibm.com/industries/government/kr/tl/index.html]
          [^http://www.zdnet.co.kr/news/network/security/0,39031117,39148451,00.htm]
  • OracleSystemTable . . . . 2 matches
          * http://docs.oracle.com/cd/B19306_01/server.102/b14237/index.htm
          * [all_source] : describes the text source of the stored objects accessible to the current user. http://docs.oracle.com/cd/B19306_01/server.102/b14237/statviews_2063.htm
  • PairingSamsungBluetoothKeyboardTrio500OnXubuntu . . . . 2 matches
         Trio 500 requires a PIN code to be paired.
         Then, a 6-digit numeric value (pin code) to be entered is displayed on the screen, such as {{{PassKey 123456}}}.
  • PowerSetWithDp . . . . 2 matches
         http://swlock.blogspot.kr/2016/03/dp-power-set-with-dp.html
         https://github.com/gimslab/algorithms/blob/master/src/main/java/power_set_with_dp/PowerSetWithDp.java
  • Reactive Programming and Coroutines . . . . 2 matches
         https://medium.com/digitalfrontiers/reactive-or-coroutines-between-a-rock-and-a-hard-place-6a41a151195a
         https://github.com/b2etw/reactive-coroutine-performance-test
  • Reactive Readability . . . . 2 matches
         Coroutines - a better match for Kotlin than Reactive Streams? https://nexocode.com/blog/posts/reactive-streams-vs-coroutines/
  • Real-timeBlockingList . . . . 2 matches
          * http://www.corpit.ru/mjt/rbldnsd.html 에서 다운로드 받은 후 설치
          * http://www.kisarbl.or.kr 에 가입 후 승인을 받는다.
  • Reform . . . . 2 matches
         [OWASP] encoding project : http://www.owasp.org/index.php/Category:OWASP_Encoding_Project
         org.owasp.reform.Reform.HtmlEncode(xxxx);
  • SEED . . . . 2 matches
         1999년 2월 [http://www.kisa.or.kr 한국정보보호진흥원]과 국내 암호전문가들이 함께 개발한 암호알고리즘으로 인터넷, 전자상거래, 무선 통신 등에서 공개되는 경우 민감한 영향을 미칠 수 있는 중요 정보 및 개인 정보를 보호하기 위하여 개발된 국내 블록암호알고리즘입니다.
         참고 : http://www.kisa.or.kr/kisa/seed/jsp/seed.jsp
  • SSL해킹 . . . . 2 matches
         <form action="https://sss">...
         <form action="http://sss">...
  • Simian . . . . 2 matches
         http://www.redhillconsulting.com.au/products/simian/
         Simian (Similarity Analyser) identifies duplication in Java, C#, C, C++, COBOL, Ruby, JSP, ASP, HTML, XML, Visual Basic, Groovy source code and even plain text files. In fact, simian can be used on any human readable files such as ini files, deployment descriptors, you name it.
  • SpamAssassin . . . . 2 matches
         http://spamassassin.apache.org/
         setup : http://www.stearns.org/doc/spamassassin-setup.current.html#sitewide
  • SynapticTouchpadSensitivityUbuntu . . . . 2 matches
          - refer to : https://www.x.org/archive/X11R7.5/doc/man/man4/synaptics.4.html
         more https://www.x.org/archive/X9R5.3/doc/man/man2/synaptics.2.html
  • Test명령 . . . . 2 matches
         {{{[}}} 와 {{{[[}}} 의 차이점 : [[http://mywiki.wooledge.org/BashFAQ/031]]
         http://wiki.bash-hackers.org/commands/classictest
  • TheIdealWayToUseJUnit . . . . 2 matches
          * Write just enough code to make it succeed
          * until all the code is written and tested
  • Ubuntu20.04BroadcomBCM4352WirelessNetworkAdapterDriver . . . . 2 matches
         cf. https://itsfoss.com/fix-no-wireless-network-ubuntu/
         https://www.google.com/search?q=wifi+usb+adapter&newwindow=1&sxsrf=ALeKk02baOW_EfJ2SUvry6c0xfsROV582g:1602916984720&source=lnms&tbm=isch&sa=X&ved=2ahUKEwj7vemLg7vsAhWjGqYKHQqWBWEQ_AUoAXoECBUQAw&biw=1159&bih=883
  • Unicode . . . . 2 matches
         Unicode converter : https://r12a.github.io/app-conversion/
  • UnixShellProgramming . . . . 2 matches
         http://wiki.kldp.org/HOWTO/html/Adv-Bash-Scr-HOWTO/complexfunct.html
         http://www.leopit.com/Leophp/board/lecture_board/view.php?id=77&board_mode=linux
  • VIA . . . . 2 matches
         web setting - https://usevia.app/
          - VIA site: https://www.caniusevia.com/
  • VimShortcuts . . . . 2 matches
         http://www.cs.fsu.edu/general/vimanual.html
          * vim navigation : http://www.thegeekstuff.com/2009/03/8-essential-vim-editor-navigation-fundamentals/
  • VirtualServer2005R2 . . . . 2 matches
         http://www.microsoft.com/downloads/details.aspx?displaylang=ko&FamilyID=6dba2278-b022-4f56-af96-7b95975db13b
         http://www.microsoft.com/downloads/details.aspx?FamilyID=6dba2278-b022-4f56-af96-7b95975db13b&DisplayLang=en
  • VisualStudioCode . . . . 2 matches
         #keywords vscode, plugin
         vscode plugins: Code Ace Jumper
  • Web2.0을활용한사이트 . . . . 2 matches
         [^http://tagstory.com] - 동영상공유
         from zdnet : [^http://www.zdnet.co.kr/news/enterprise/etc/0,39031164,39146625,00.htm]
  • WebWork . . . . 2 matches
         http://www.opensymphony.com/webwork/
         WebWork is a Java web-application development framework. It is built specifically with developer productivity and code simplicity in mind, providing robust support for building reusable UI templates, such as form controls, UI themes, internationalization, dynamic form parameter mapping to JavaBeans, robust client and server side validation, and much more.
  • WikiWikiWeb . . . . 2 matches
          * http://www.c2.com/cgi/wiki or wiki:Wiki:FrontPage
          * [http://news.mpr.org/programs/futuretense/daily_rafiles/20011220.ram Ward Cunningham Radio Interview]
  • XSS . . . . 2 matches
         encoding project ([Reform]) for XSS safe code
         weblogic.servlet.security.Utils.encodeXSS
  • XmodmapToUseCapslockAsVimLikeHJKLArrowKeyAndESCKey . . . . 2 matches
         keycode 66 = Mode_switch
         keycode 47 = semicolon colon End
  • aspectwerkz . . . . 2 matches
         http://aspectwerkz.codehaus.org/
  • certbot . . . . 2 matches
         #keywords LetsEncrypt, certbot, ssl, https, certs
         https://pimylifeup.com/raspberry-pi-ssl-lets-encrypt/
  • chatgpt . . . . 2 matches
         #ref. https://platform.openai.com/docs/api-reference/completions/create
          RESPONSE=$( \
          curl https://api.openai.com/v1/chat/completions \
          echo "answer: $RESPONSE" >> $FILE
          echo "$RESPONSE"
  • com.gimslab.msgrcvf . . . . 2 matches
         http://code.google.com/intl/ko/android/c2dm/signup.html
  • csv-encoding . . . . 2 matches
          * 추가 : 20070509 - decodeCSVRecord 메소드
          * 제거 : 20070510 - decodeCSVRecord 메소드를 제거하고 csv읽기기능을 CSVReader 클래스로 분리하여 스트림에서 바로 파싱하도록 함
  • eclipse . . . . 2 matches
         = eclipse code formatter =
         [eclipse java code style formatter]
  • exiftool . . . . 2 matches
         cf. https://github.com/gimslab/pc-settings/blob/master/bin/exif-check-datetime-from-dirname.sh
         cf. https://github.com/gimslab/pc-settings/blob/master/bin/exif-update-datetime-from-filename.sh
  • gscan . . . . 2 matches
         http://wiki.gimslab.com/gscan/gscan-install.swf.html
         http://wiki.gimslab.com/gscan/gscan-commandline-work.swf.html
  • html5 . . . . 2 matches
         [[korflag.html]] - html5 canvas 이용한 태극기 그리기 (copied to https://codepen.io/gimslab/full/zQzxBR)
  • jetty . . . . 2 matches
         http://jetty.mortbay.org/
         http://eclipse.org/jetty
  • json . . . . 2 matches
         from http://www.json.org/
         javascript에서 기본적으로 인식되고 java나 basic, c, python 등 [http://www.json.org/json-ko.html 다양한 언어]에서 지원 라이브러리가 존재한다.
  • jsp . . . . 2 matches
         response.setHeader("Content-Disposition", "attachment;filename=gimslab.com.xls");
         response.setHeader("Content-Description", "JSP Generated Data");
  • kunzip . . . . 2 matches
         use Encode;
          my $n = decode("cp949",$mref->fileName);
  • lighttpd . . . . 2 matches
         소개 : http://kihoori.tistory.com/tag/lighttpd
  • openssl로인증서만들기 . . . . 2 matches
         #keywords ssl, https, openssl, apache ssl server
         [[https]],
  • querydsl . . . . 2 matches
         http://kwonnam.pe.kr/wiki/gradle/jpa_metamodel_generation
         https://netframework.tistory.com/462
  • rcs . . . . 2 matches
         The Revision Control System (RCS) manages multiple revisions of files. RCS automates the storing, retrieval, logging, identification, and merging of revisions. RCS is useful for text that is revised frequently, including source code, programs, documentation, graphics, papers, and form letters.
         from http://www.gnu.org/software/rcs/rcs.html
  • rtac68p . . . . 2 matches
         from http://prod.danawa.com/info/?pcode=4534930#bookmark_product_information
  • shinhung . . . . 2 matches
         http://www.kunpo-shinhung.es.kr/class/include/sub.php?mode=board&no=287&category=10712&db=mini_album&menuSkin=board_miniAlbum
         http://www.kunpo-shinhung.es.kr/class/include/sub.php?mode=board&no=281&category=10605&db=mini_board&menuSkin=board_miniBasic
  • slack-alt-tab-error . . . . 2 matches
         https://bugs.launchpad.net/ubuntu/+source/xfwm4/+bug/1827302
         https://github.com/gimslab/scripts/blob/master/slack-fix-alt-tab-error.sh
  • surfingkeys . . . . 2 matches
         https://chrome.google.com/webstore/detail/surfingkeys/gfbliohnnapiefjpjlpjnehglfpaknnc
         my settings: https://github.com/gimslab/bash-scripts/blob/master/surfingkeys.settings
  • trac . . . . 2 matches
         http://trac.edgewall.org
         -- from http://www.hosted-projects.com/trac/TracDemo/Demo
  • ui test . . . . 2 matches
         http://phantomjs.org/
         http://www.seleniumhq.org/
  • utf-8 . . . . 2 matches
         [utf8 encoder decoder javascript]
  • xps13 . . . . 2 matches
         http://www.dell.com/support/home/us/en/04/product-support/servicetag/FRYCQ32/diagnose?s=DHS
         참조: https://www.google.co.kr/webhp?sourceid=chrome-instant&ion=1&espv=2&ie=UTF-8#newwindow=1&q=make+bootable+usb+from+iso+on+ubuntu
  • 구글검색옵션 . . . . 2 matches
         구글해킹DB : http://johnny.ihackstuff.com/ghdb.php
         구글 Cheat Sheet : http://www.google.co.kr/help/cheatsheet.html
  • 구글번역브라우져북마크버튼만들기 . . . . 2 matches
         javascript:var t=((window.getSelection&&window.getSelection())||(document.getSelection&&document.getSelection())||(document.selection&&document.selection.createRange&&document.selection.createRange().text));var e=(document.charset||document.characterSet);if(t!=''){window.open('http://translate.google.co.kr/?text='+t+'&hl=ko&langpair=auto|ko&tbb=1&ie='+e);}else{window.open('http://translate.google.co.kr/translate?u='+escape(location.href)+'&hl=ko&langpair=auto|ko&tbb=1&ie='+e);};
  • 마우스오른버튼눌러현재폴더의명령창(cmd)띄우기 . . . . 2 matches
         참고 : http://windowsxp.mvps.org/context_folders.htm
         관련툴 : http://www.nirsoft.net/utils/shexview.html
  • 모바일기기 . . . . 2 matches
         http://www.ubnuri.com/ - 유비누리
         http://kr.fon.com
  • 모바일용사이트만들기 . . . . 2 matches
          * [http://www.i-alliance.co.kr/162 모바일 위젯 마케팅을 기획할때 고려할 사항들]
          * [http://html.nhndesign.com/1759 Mobile 기기를 위한 문서의 DTD]
  • 모바일웹과모바일앱 . . . . 2 matches
         [http://mobizen.pe.kr/911?category=3 Taptu]
          * 플랫폼별 컨텐츠양을 좀 더 디테일하게 살펴보면 2009년 12월 1일, 기준으로 Global하게 Mobile Web 사이트는 326,600개로 알려져 있다. 이에 반해 가장 큰 Apps Store인 iPhone Apps Store는 약 148,000개, Android의 경우는 24,000개 정도 밖에 되지 않는다. [http://mobizen.pe.kr/911?category=3 Taptu]
  • 무료DNS . . . . 2 matches
         http://dnszi.com
         http://dnsever.com : 최근 유료화됨
  • 무료책 . . . . 2 matches
         http://it-ebooks.info/
         https://github.com/vhf/free-programming-books
  • 스파이웨어 . . . . 2 matches
         [^http://spywareguide.com]
         [^http://elitec0ders.net]
  • 썬더버드설정옮기기 . . . . 2 matches
         http://blog.gimslab.com/tag/Thunderbird
         http://support.mozillamessaging.com/bg/kb/Profiles
  • 아파치디렉토리사용자인증설정하기 . . . . 2 matches
          *디렉토리 설정(httpd.conf)
          *디렉토리 설정(httpd.conf)
  • 업무시각화-도미니카드그란디스-202005 . . . . 2 matches
         4. [https://ko.wikipedia.org/wiki/%ED%8F%AC%EB%AA%A8%EB%8F%84%EB%A1%9C_%EA%B8%B0%EB%B2%95 뽀모도로]
         영화 [https://movie.daum.net/moviedb/main?movieId=58793&t__nil_CastCrew=text In Time]
  • 오픈소스S/w라이센스 . . . . 2 matches
         http://www.dt.co.kr/contents.html?article_no=2008090102010151600001
         http://www.socop.or.kr/06information/06information_06.jsp?board_idx=258
  • 오픈소스소프트웨어활용사례 . . . . 2 matches
         [^http://www.ddaily.co.kr/news/?fn=view&article_num=21616]
         [^http://www.zdnet.co.kr/news/enterprise/etc/0,39031164,39155808,00.htm]
  • 웹표준교육수강노트 . . . . 2 matches
         [^http://sumanpark.com/blog/41] - 강사 블로그의 1차교육 후기
         [http://naradesign.net]
  • 작은사전띄우기 . . . . 2 matches
         javascript:function openSdic(){var w=window.open('http://endic.naver.com/small.naver?where=index','DirectSearch_Dic','left='+(screen.width-410)+',top=17,width=405,height=500,resizable=no,scrollbars=no');void(0);}openSdic();
         javascript:function openSdic(){var w=window.open('http%3A%2F%2Fengdic.daum.net%2Fdicen%2Fsmall_view_top.do','DirectSearch_Dic','left='+(screen.width-410)+',top=17,width=405,height=500,resizable=no,scrollbars=no');void(0);}openSdic();
  • 좋은글이있는.곳.com . . . . 2 matches
         http://www.곳.com
         http://좋은글이있는.곳.com
  • 코틀린마이크로서비스개발-후안안토니오 . . . . 2 matches
         https://image.aladin.co.kr/product/17892/64/cover500/k472534831_1.jpg?width=160
         https://github.com/gimslab/kotlin-microservices
  • 1일차-Ajax교육 . . . . 1 match
         [httpRequest.js] - XMLHttpRequest 객체를 사용하는 [ajax] 공통 함수
  • 40% Keyboard . . . . 1 match
         http://www.vortexgear.tw/vortex2_2.asp?kind=47&kind2=224&kind3=&kind4=1036
  • ADTEclipsePlugin . . . . 1 match
         http://developer.android.com/tools/sdk/eclipse-adt.html
  • AES . . . . 1 match
         http://www.madebits.com/retro/aes/index.php
  • AI Training Cloud . . . . 1 match
         https://ainize.ai
  • AOP . . . . 1 match
         http://youngkun.info/tag/AOP%20%EC%9A%A9%EC%96%B4
  • ActiveSync . . . . 1 match
         http://pda.bluebird.co.kr/moin.cgi/ActiveSync
  • AdNetwork . . . . 1 match
         ex) https://www.cauly.net/
  • AdTech . . . . 1 match
         cf. https://brunch.co.kr/magazine/ad-tech-story
  • AndroidMarket . . . . 1 match
         https://market.android.com/publish/
  • AndroidSDK . . . . 1 match
         http://developer.android.com/
  • ApacheBasedSvnServer . . . . 1 match
         http://tortoisesvn.net/docs/nightly/TortoiseSVN_en/tsvn-serversetup-apache.html
  • ApacheSsl서버구성 . . . . 1 match
         만든 인증서를 conf/extra/httpd-ssl.conf 에 지정
  • ApacheWebServer . . . . 1 match
         httpd.conf에 다음 내용 추가
  • Apache에Php세팅하기 . . . . 1 match
         add to httpd.conf
  • AppleMagicTrackpad2ForUbuntu . . . . 1 match
         from https://github.com/robotrovsky/Linux-Magic-Trackpad-2-Driver
  • AppleMagicTrackpad2ForUbuntu20.04.1 . . . . 1 match
         cf. https://www.x.org/archive/X11R7.5/doc/man/man4/synaptics.4.html
  • AptanaStudio . . . . 1 match
         http://www.aptana.com/
  • Artifactory . . . . 1 match
         http://www.jfrog.org/sites/artifactory/latest/
  • AttachmentMacro . . . . 1 match
          http://kldp.net/themes/kldp/images/kldplogo.png?width=400&align=middle 외부파일 테스트입니다
  • BashScripts . . . . 1 match
         https://github.com/gimslab/bash-scripts
  • BasicRulesOfCassandraDataModelling . . . . 1 match
         from : https://www.datastax.com/dev/blog/basic-rules-of-cassandra-data-modeling
  • BeanShell . . . . 1 match
         http://beanshell.org/
  • BitTorrent . . . . 1 match
         http://www.bittorrent.com/
  • BuildingMicroservices;마이크로서비스아키텍처구축-샘뉴먼지음,정성권옮김 . . . . 1 match
          ref. https://www.12factor.net/
          * 실천사항 : 자세한 실질적 지침(ex:코딩지침, 로그는 중앙수집, HTTP/REST가 표준 통합 스타일), 조직규모에 따라 팀별로 다를 수 있음
          - Request/Response 기반 협업 : 동기 or 비동기(with callback)
          - HTTP: REST와 궁합이 잘맞음, 자원과 함께 사용되는 HTTP 동사들, HTTP는 풍부한 지원도구와 거대한 기술 생태계 존재
  • ByteOrderingInWords . . . . 1 match
         http://www.nicklib.com/bbs/board.php?bo_table=bbs_scrap&wr_id=6&sca=%B0%F8%C5%EB
  • CapslockKeyToVimLikeHJKLArrowKeyAndESCKey . . . . 1 match
         https://unix.stackexchange.com/questions/414926/bind-capshjkl-to-arrow-keys-caps-to-esc
  • Categorical Variables Handling . . . . 1 match
         from https://techblog-history-younghunjo1.tistory.com/99
  • Checkstyle . . . . 1 match
         http://checkstyle.sourceforge.net/
  • Cobertura . . . . 1 match
         http://cobertura.sourceforge.net/
  • CopyingOffsetsOfAConsumerGroupToAnotherConsumerGroupInKafka0.10WithPythonScript . . . . 1 match
         The following python scripts are available from [https://github.com/gimslab/scripts/tree/master/copy-kafka-offsets-0.10.1.1-python3 github]
  • Coroutine Performance . . . . 1 match
         https://blog.allegro.tech/2020/02/webflux-and-coroutines.html
  • CountOnMe . . . . 1 match
         관련앨범 - [http://ko.wikipedia.org/wiki/Doo-Wops_%26_Hooligans Doo-Wops & Hooligans]
  • CruiseControl . . . . 1 match
         http://cruisecontrol.sourceforge.net/
  • CvsUpdateResultCodes . . . . 1 match
         from http://opensource.tistory.com/10
  • Cvs와비교한Subversion의장점 . . . . 1 match
          * 출처 : http://wiki.kldp.org/wiki.php/Subversion-HOWTO#s-2.1
  • DDC . . . . 1 match
         Default Delivery Context : http://www.w3.org/TR/mobile-bp/#ddc
  • DDR . . . . 1 match
         Device Description Repository : http://www.w3.org/TR/DDR-Simple-API/
  • DateMacro . . . . 1 match
         cf. http://memorecycle.com/w/wiki.php/DateTimeMacro
  • DeadLock . . . . 1 match
         = code =
  • Deep Learning . . . . 1 match
         https://wikidocs.net/22660
  • DocBook . . . . 1 match
         http://www.joinc.co.kr/modules/moniwiki/wiki.php/Site/Docbook/Documents/docbook_howto#AEN22
  • DynamicDns . . . . 1 match
         [^http://www.dnserver.co.kr]
  • ETH . . . . 1 match
         https://www.coinmama.com/
  • EbXML기반전자거래절차도 . . . . 1 match
         from http://www.remko.or.kr/jsp/intro/intro_ebXML.html
  • EbXML등장배경 . . . . 1 match
         from http://www.remko.or.kr/jsp/intro/intro_ebXML.html
  • EclipseSWT . . . . 1 match
         from [^http://www.acornpub.co.kr/issue/10]
  • EclipseServer구성 . . . . 1 match
         http://springmvc.egloos.com/438345
  • Epson L3156 Driver for Ubuntu . . . . 1 match
         https://askubuntu.com/questions/1117964/epson-l3150-printer-driver
  • FZF-CommandlineFuzzyFinder . . . . 1 match
         https://github.com/junegunn/fzf
  • FastSearchMacro . . . . 1 match
         http://www.heddley.com/edd/php/search.html
  • Fiddler . . . . 1 match
         Fiddler is a Web Debugging Proxy which logs all HTTP(S) traffic between your computer and the Internet. Fiddler allows you to inspect all HTTP(S) traffic, set breakpoints, and "fiddle" with incoming or outgoing data. Fiddler includes a powerful event-based scripting subsystem, and can be extended using any .NET language.
         http://www.fiddler2.com/
  • FilcoAndAnnePro2 . . . . 1 match
         https://blog.gimslab.com/entry/Filco-vs-Anne-Pro-2
  • FirefoxTips . . . . 1 match
         http://www.google.co.kr/search?ie=utf-8&oe=utf-8&aq=t&rls=org.mozilla:ko:official&client=firefox&q=
  • Flash제작업체 . . . . 1 match
         [^http://www.astrum.co.kr/] ACG
  • GUI위젯 . . . . 1 match
         http://blog.gimslab.com/41
  • GuavaRateLimiterExample . . . . 1 match
         https://github.com/gimslab/rate-limiter-exam/blob/master/src/main/kotlin/com/gimslab/ratelimiterexam/App.kt
  • HD노래 . . . . 1 match
         youtube music playlist: https://music.youtube.com/playlist?list=PLeA72g_-mW84GGMH5jc_lGOUcLQVLe3kh&feature=share
  • HelpContents . . . . 1 match
          * MoniWiki:HelpForDevelopers - how to add your own features by changing the MoniWiki code
  • HelpOnPageCreation . . . . 1 match
         Note that saving template or form definition pages and using preview does ''not'' expand variables. Other than that, variable expansion is very global and happens anywhere on the page, including code displays, comments, processing instructions and other "special" areas of a page you might think are excluded.
  • HelpOnProcessors . . . . 1 match
         Processors work on the data in a code display. You specify which processor to call by using a ''bang path''-like construct in the first line. A bang path is a concept known from Unix command line scripts, where they serve the exact same purpose: the first line tells the shell what program to start to process the remaining lines of the script.
  • HideDownloadBar . . . . 1 match
         [https://chrome.google.com/webstore/detail/hide-download-bar/ibijappnbkobdaakafkliejnnncjfggi?hl=ko&authuser=2 Chrome Web Store]
  • HideDownloadBarFromGithub . . . . 1 match
         go to https://github.com/gimslab/hide-download-bar
  • Html5Basic . . . . 1 match
          * 참고 : http://apirocks.com/html5/html5.html
  • Html5JsApi . . . . 1 match
          window.webkitNotifications.createNotification("http://gimslab.com/html5.png", "Title", "Body").show();
  • Hudson . . . . 1 match
         http://hudson-ci.org/
  • IdeaPlugins . . . . 1 match
         https://plugins.jetbrains.com/plugin/9567-request-mapper
  • InstallPrivateRootCertInUbuntu . . . . 1 match
         https://askubuntu.com/questions/73287/how-do-i-install-a-root-certificate
  • Intellij Idea Plugins . . . . 1 match
         https://github.com/a690700752/KJump
  • JTidyPlugin . . . . 1 match
         http://jtidy.sourceforge.net/
  • JWSDP . . . . 1 match
         [^http://java.sun.com/webservices/docs/2.0/api/index.html] Java Web Services java doc
  • Jar파일에Classpath추가하기 . . . . 1 match
          * Adding Classes to the JAR File's Classpath : http://java.sun.com/docs/books/tutorial/deployment/jar/downman.html
  • JavaStream(codeSnippet) . . . . 1 match
         #keywords java stream, code snippet
  • JavascriptText의ByteLength구하기 . . . . 1 match
          //escape code의 길이가 4보다 크면 한글
  • JavascriptTips . . . . 1 match
         [javascript code snippet]
  • Java관련기사 . . . . 1 match
         [[Date(2007-08-31T03:51:42)]] from http://www.etnews.co.kr/news/detail.html?id=200708290137
  • Kafka Partition Assignment Strategy . . . . 1 match
         cf. https://velog.io/@hyun6ik/Apache-Kafka-Partition-Assignment-Strategy
  • KeyWord . . . . 1 match
         https://www.keyword.io/
  • LangChain . . . . 1 match
         https://wikidocs.net/195808
  • LinuxSystem관리 . . . . 1 match
         https://b.luavis.kr/server/linux-performance-analysis
  • Linux디렉토리구조 . . . . 1 match
         http://www.pathname.com/fhs/pub/fhs-2.3.html#MNTMOUNTPOINTFORATEMPORARILYMOUNT
  • ML Study . . . . 1 match
         2023/6/22 ChatGPT Fine Tuning https://www.youtube.com/watch?v=eS7o9IfkJxI
  • MSWindowsTip . . . . 1 match
          * http://dramatique.tistory.com/m/903
  • MavenDependency관리 . . . . 1 match
         http://mvnrepository.com/
  • Meaning of INVERSION from SOLID DIP . . . . 1 match
         from wikipeda: https://en.wikipedia.org/wiki/Dependency_inversion_principle
  • Mini Keyboard . . . . 1 match
         https://www.aliexpress.com/item/32957595066.html
  • Missing Value Handling . . . . 1 match
         dropna() : https://cosmosproject.tistory.com/308
  • MobileApp . . . . 1 match
         [http://itnews.inews24.com/php/news_view.php?g_serial=489898&g_menu=020300&pay_news=0 스마트폰 '앱'으로 경기도 정보 본다]
  • MoniWikiCssTips . . . . 1 match
         http://www.picment.com/articles/css/funwithforms/
  • MoniWikiFormatting . . . . 1 match
         http://wiki.ktug.org/wiki/wiki.php/HelpOnFormatting
  • MoniWikiTextFormatting . . . . 1 match
         http://moniwiki.kldp.net/wiki.php/MoniWiki%EB%AC%B8%EB%B2%95-%EA%B8%80%EC%94%A8%EC%83%89%EC%83%81%EC%A3%BC%EA%B8%B0
  • MoniWikiThemes . . . . 1 match
         IE의 경우 display:block 또는 display:table 을 통해 2개 이상의 블록모델 레이어를 중첩시킬 때 width 속성을 각각 주지 않으면 마우스 스크롤이나 리플레시 동작에 컨텐츠가 지워지는 특징(버그?)이 있습니다. width 속성을 주면 괜찮아 지더군요. 최근 저도 CSS만으로 테마를 구현하고 있습니다. --[http://scrapnote.com 고미다]
  • MoniWikiTip . . . . 1 match
          * 새 창으로 열리는 링크를 만드는 방법 : url앞에 ^를 붙인다. 예 : [^http://wiki.gimslab.com]
  • MonitoringOnMSA . . . . 1 match
         [https://logz.io/learn/complete-guide-elk-stack/ ELK Stack]
  • Moniwiki Installation . . . . 1 match
         add code below into php file where error occurs
  • Moniwiki한글파일명UTF8변환 . . . . 1 match
         https://r12a.github.io/app-conversion/
  • MouseButtonModifier-Moving,ResizingWindow . . . . 1 match
         https://askubuntu.com/questions/118151/how-do-i-disable-window-move-with-alt-left-mouse-button-in-gnome-shell
  • Multimaps.index() . . . . 1 match
         #keywords guava, collections, java, code clip
  • Nexus . . . . 1 match
         http://nexus.sonatype.org/
  • Nio의각방식을이용한파일복사성능비교 . . . . 1 match
         참고 : [http://bcho.tistory.com/288 Java File Writing 성능 비교]
  • OGNL . . . . 1 match
         http://www.ognl.org
  • Open Source Media Center Software . . . . 1 match
         http://www.linuxlookup.com/guide_to_building_an_open_source_htpc_media_center_on_ubuntu
  • OpenLaszlo . . . . 1 match
         [^http://www.openlaszlo.org/]
  • OpenSSL . . . . 1 match
         http://wiki.kldp.org/wiki.php/DocbookSgml/SSL-Certificates-HOWTO
  • PcSettingsSyncWithGit . . . . 1 match
         https://github.com/gimslab/pc-settings
  • PhoneGap . . . . 1 match
         http://www.phonegap.com/
  • Php설치-Linux . . . . 1 match
         1.download src from wget [^http://www.php.net/]
  • PlayMacro . . . . 1 match
         {{{[[Play(http://foo.bar/my.mp3)]]}}}
  • PulseSecureUIFor64bitLinux . . . . 1 match
         https://cis.technion.ac.il/en/central-services/communication/install-juniper-ubuntu/
  • Random Forests . . . . 1 match
         Ref. https://www.youtube.com/watch?v=J4Wdy0Wc_xQ&t=80s
  • RandomQuoteMacro . . . . 1 match
          - Perl is executable line noise, Python is executable pseudo-code
  • Reactive Painpoint . . . . 1 match
         code 복잡
  • Remote Desktop으로 XRDP 연결시 GUI 프로그램들이 깨지는 현상 - 20240501 . . . . 1 match
         from https://forums.raspberrypi.com/viewtopic.php?t=358637
  • RepositoryManager . . . . 1 match
         from http://www.sonatype.com/books/nexus-book/reference/ch02s02.html
  • ResetMysqlRootPassword . . . . 1 match
         https://dev.mysql.com/doc/refman/8.0/en/resetting-permissions.html
  • ResilioSync . . . . 1 match
         https://www.resilio.com/
  • RestApi . . . . 1 match
         https://www.vinaysahni.com/best-practices-for-a-pragmatic-restful-api
  • SAGA Pattern . . . . 1 match
         from https://velog.io/@dvmflstm/SAGA-pattern%EC%9D%84-%EC%9D%B4%EC%9A%A9%ED%95%9C-%EB%B6%84%EC%82%B0-%ED%8A%B8%EB%9E%9C%EC%9E%AD%EC%85%98-%EA%B5%AC%ED%98%84%ED%95%98%EA%B8%B0
  • SOA . . . . 1 match
         from BEA 솔루션 가이드북 [^https://www.mybea.co.kr/img/BEA_guide.pdf]
  • SOAP . . . . 1 match
         HTTP 프로토콜을 이용하므로 HTTP의 특성을 상속받음
         [^http://www.w3.org/TR/soap/]
  • SSH . . . . 1 match
         http://wiki.gimslab.com/comnote/secure/ssh/
  • SSL . . . . 1 match
         OpenSSL, [https], [SSL 해킹]
  • SSL For Free . . . . 1 match
         https://www.sslforfree.com/
  • SVNNotifier . . . . 1 match
         http://svnnotifier.tigris.org
  • SemanticWeb . . . . 1 match
         http://www.dal.co.kr/ - 김중태 문화원
  • SessionAttributesListing . . . . 1 match
         [java code snippet] >
  • SftpFtpScp비교 . . . . 1 match
         http://winscp.net/eng/docs/protocols
  • SimpleDistributedLockWithRedis . . . . 1 match
         https://github.com/gimslab/spring-data-redis-simple-distributed-lock
  • SomeGuidelinesForDecidingWhetherToUseARulesEngine . . . . 1 match
         http://www.jessrules.com/guidelines.shtml
  • SpecificationByExample . . . . 1 match
         http://onoffmix.com/event/35072
  • SpringMvcMemo . . . . 1 match
         http://springsource.tistory.com/m/15
  • Spring버젼별특징 . . . . 1 match
         http://www.springinaction.com
  • SqlInjection . . . . 1 match
         [^http://foundstone.com]
  • SshTunneling . . . . 1 match
         http://qgp9.github.io/blog/2016/03/26/ssh-proxy-jump-host
  • StarUML . . . . 1 match
         StarUML은 빠르고, 유연하고, 확장가능하며, 풍부한 기능에 Win32 플랫폼에서 무료로 사용할 수 있는 [UML]/[MDA] 플랫폼(툴)을 개발하기 위한 오픈 소스 프로젝트입니다. StarUML 프로젝트의 목적은 [Rational Rose], [Together]와 같은 상업적 도구를 비싼 돈을 들여 사용하지 않더라도 그에 준하는 기능을 갖춘 오픈 소스 소프트웨어 [모델링 도구] 및 플랫폼을 개발하는 것입니다. http://staruml.sourceforge.net/
  • StreamBridge.java . . . . 1 match
         http://10.80.3.54:3333
  • Stty특수문자지정 . . . . 1 match
         출처 : http://unix.co.kr/bbs/board.php?bo_table=03_4&wr_id=434&sca=S&page=8
  • Subclipse설치하기 . . . . 1 match
          * 사이트 주소 : http://subclipse.tigris.org/update_1.8.x
  • SunJavaStudioCreator2 . . . . 1 match
         http://kr.sun.com/developers/pages/tools/jscreator/
  • TamarinProject . . . . 1 match
         The goal of the "Tamarin" project is to implement a high-performance, open source implementation of the [ECMAScript] 4th edition (ES4) language specification. The Tamarin virtual machine will be used by Mozilla within SpiderMonkey, the core JavaScript engine embedded in [Firefox]®, and other products based on Mozilla technology. The code will continue to be used by Adobe as part of the ActionScript™ Virtual Machine within Adobe® Flash® Player.
  • Tech Interveiw . . . . 1 match
         https://github.com/JaeYeopHan/Interview_Question_for_Beginner
  • TheDevOpsHandbook-진킴외 . . . . 1 match
         https://image.aladin.co.kr/product/15144/78/cover150/k782533468_1.jpg
  • ThreadJoin()Test . . . . 1 match
         = code =
  • Titanium . . . . 1 match
         http://www.appcelerator.com/platform
  • UTF8 . . . . 1 match
         #keywords UnixShellProgramming, Unicode
  • Ubuntu16.04KoreanFont . . . . 1 match
         https://www.google.com/get/noto/#sans-kore
  • Ubuntu16.04XPS-13WifiDriverIssue . . . . 1 match
         It'll grab the latest broadcom drivers and intel microcode, you'll need to disable secure boot if its enabled, reboot, and it should work.
  • Useful Software for Mac . . . . 1 match
         https://github.com/dmarcotte/easy-move-resize
  • UserExperience . . . . 1 match
         http://boxesandarrows.com
  • UserPreferences . . . . 1 match
         If you are coming to this page for the first time, you'll see form into which you can enter your username and some other settings (crypted password and e-mail are stored). If you click on '''Create Profile''', a user profile will be created for you. With the response, a HTTP cookie will be sent that contains your user ID, which enables the system to recognize you.
  • VIA Keychron K9 Pro Layout Setting File . . . . 1 match
         https://www.keychron.com/blogs/archived/k9-pro-factory-reset-and-firmware-flash?_pos=1&_psq=reset+k9&_ss=e&_v=1.0
  • Web2.0 . . . . 1 match
         [^http://www.inews24.com/php/news_view_mtalk.php?g_serial=240349&g_menu=380100]
  • Web2.0소식 . . . . 1 match
         http://news.chosun.com/site/data/html_dir/2007/01/05/2007010500299.html
  • WebServer . . . . 1 match
          * [lighttpd]
  • WebUploadStreamFormat . . . . 1 match
         POST /upload.do?method=createExchange HTTP/1.1
         Referer: http://upload_form.do
  • Wifi Keyboard for Android . . . . 1 match
         https://github.com/gimslab/wifi-keyboard-cli-client
  • WikiNature . . . . 1 match
         See http://www.c2.com/cgi/wiki?WikiNature for more.
  • WindowsXP환경변수 . . . . 1 match
         http://blog.naver.com/PostView.nhn?blogId=lordzim&logNo=110068029587
  • WordInMind . . . . 1 match
         App 및 단어장 다운 받기 : http://wiki.gimslab.com/wim/
  • XMLParser . . . . 1 match
          * [XML] Parser API Feature Summary : http://java.sun.com/webservices/docs/1.6/tutorial/doc/SJSXP2.html#wp103531
  • XMLTools . . . . 1 match
         XMLSpy - [^http://altova.com/] : [XML editor]
  • XMLWebServicesWithJava . . . . 1 match
         강사 : 김성박 urstory@unitel.co.kr ([^http://sunny.sarang.net/])
  • XP . . . . 1 match
         http://www.extremeprogramming.org/
  • Xps13UbuntuBluetooth . . . . 1 match
         https://github.com/winterheart/broadcom-bt-firmware/blob/master/brcm/BCM20702A1-0a5c-216f.hcd
  • XubuntuClockFormat . . . . 1 match
         http://docs.xfce.org/xfce/xfce4-panel/clock
  • YoutubeDownloader . . . . 1 match
         https://listentoyoutube.online/
  • Z . . . . 1 match
         http://m.blog.naver.com/cpu29k/90102820324
  • active-x . . . . 1 match
          * ‘나홀로 액티브X’…세계 인터넷과 한국은 엇박자 - http://www.zdnet.co.kr/news/internet/browser/0,39031243,39170516,00.htm
  • agile . . . . 1 match
         from http://agile.egloos.com/3584440
  • amho . . . . 1 match
         https://github.com/gimslab/bash-snippets/blob/master/amho.sh
  • anal_log.sh . . . . 1 match
         was_call_url="http://was/log_web_access_count.jsp"
  • apachetajo . . . . 1 match
         http://blrunner.com/
  • atlassian . . . . 1 match
         https://gimslab.atlassian.net
  • aws . . . . 1 match
         Terraform and AWS 101: https://terraform101.inflearn.devopsart.dev/
  • b1l . . . . 1 match
         echo "keycode=94=backslash bar">~/.Xmodmap
  • bash getopts . . . . 1 match
         https://mug896.github.io/bash-shell/getopts.html
  • cal . . . . 1 match
         [^http://calendar.google.com]
  • classloader.jsp . . . . 1 match
         <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
  • css . . . . 1 match
         a, abbr, acronym, address, big, cite, code,
  • cvs . . . . 1 match
          * [cvs update result codes]
  • ddns . . . . 1 match
         myhost.mydomain.com cname of myhost.asuscom.com <-- using free dns like https://dns.he.net/
  • derby . . . . 1 match
         http://somnusong-textcube.blogspot.kr/2008/09/derby-%EC%82%AC%EC%9A%A9%ED%95%98%EA%B8%B0.html
  • dns . . . . 1 match
         http://www.kr.freebsd.org/doc/PoweredByDNS/
  • dnsever . . . . 1 match
         curl --user ks**:*** 'http://dyna.dnsever.com/update.php?host\[myhost.gimslab.com\]'
  • dojo . . . . 1 match
         from [^http://www.bywoong.com/blog_v2/84]
  • dom . . . . 1 match
         http://www.w3.org/DOM/
  • drools . . . . 1 match
         https://github.com/nheron/droolsonboarding
  • dropbox . . . . 1 match
         https://tinyurl.com/y9hrssac
  • eclipse-keys . . . . 1 match
         "EMF Code Generation","Generate Code","Shift+Alt+G","In Windows"
         "Web Page Editor Layout","Source Code","Shift+Ctrl+F12","Using Web Page Editor"
         "Groovy Source Commands","Groovy code templates","Shift+Alt+Z","Editing Groovy Source"
         "Web Page Editor Layout","Source Code","Ctrl+Shift+F12","Using Web Page Editor"
         "EMF Code Generation","Generate Code","Alt+Shift+G","In Windows"
  • ejb . . . . 1 match
         출처 : http://www.bywoong.com/821
  • email . . . . 1 match
         [mmencode]
  • expect . . . . 1 match
         http://expect.sourceforge.net/
  • exposed . . . . 1 match
         https://github.com/gimslab/exposed-exam
  • e교과서 . . . . 1 match
         http://book.edunet.net 영어 e-교과서 인증번호
  • find-pair-for-the-sum . . . . 1 match
         https://github.com/gimslab/algorithms
  • flexbox . . . . 1 match
         http://www.w3schools.com/css/css3_flexbox.asp
  • gmail . . . . 1 match
         http://www.google.co.kr/search?q=gmail+%EC%9D%B4%EB%AF%B8%EC%A7%80+%EC%9E%90%EB%8F%99+%ED%91%9C%EC%8B%9C+%EB%81%84%EA%B8%B0&gws_rd=cr&ei=QvpfVfmQE6fHmAWR-oDQDw#newwindow=1&q=gmail+%EC%9D%B4%EB%AF%B8%EC%A7%80%EC%8A%B9%EC%9D%B8+%EC%82%AD%EC%A0%9C
  • hbase . . . . 1 match
         http://bigdatanoob.blogspot.com/2012/11/hbase-vs-cassandra.html
  • https . . . . 1 match
         attachment:https_protocol.png
  • iPaper . . . . 1 match
         참조 : http://www.scribd.com/
  • image process . . . . 1 match
         https://cleanup.pictures/
  • infrared . . . . 1 match
         http://infrared.sourceforge.net/
  • jQuery . . . . 1 match
         http://jquery.com
  • jacob . . . . 1 match
         http://sourceforge.net/projects/jacob-project
  • java . . . . 1 match
         [java code snippet]
  • javascript . . . . 1 match
          * [javascript code snippet]
  • jdk . . . . 1 match
         http://www.oracle.com/technetwork/java/javase/downloads/
  • jiffie . . . . 1 match
         http://jiffie.sourceforge.net/
  • jni . . . . 1 match
         http://www.simtel.net/product.php%5Bid%5D93010%5Bsekid%5D0%5BSiteID%5Dsimtel.net
  • korflag.html . . . . 1 match
         http://wiki.gimslab.com/html5/korflag.html
  • ktorm . . . . 1 match
         https://github.com/gimslab/ktorm-exam
  • machine learning . . . . 1 match
         https://hunkim.github.io/ml/
  • maf . . . . 1 match
         http://maf.mozdev.org/
  • mefo . . . . 1 match
         [요양기관 정보화 포럼] --> [^http://mefo.or.kr]
  • mon.html . . . . 1 match
         <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" >
  • moniwikicmd.sh . . . . 1 match
         https://github.com/gimslab/scripts/blob/master/moniwikicmd.sh
  • mycli bug . . . . 1 match
         https://github.com/dbcli/mycli/issues/1087
  • network-key-in.sh . . . . 1 match
         --> https://github.com/gimslab/wifi-keyboard-cli-client
  • nfs . . . . 1 match
         https://help.ubuntu.com/community/SettingUpNFSHowTo
  • nginx . . . . 1 match
         http://wiki.nginx.org/NginxKo
  • reverse.sh . . . . 1 match
         https://github.com/gimslab/pc-settings/blob/master/bin/reverse.sh
  • rosetta . . . . 1 match
         https://sen1-totale.rosettastoneenterprise.com/ko-KR
  • ruby . . . . 1 match
         [^http://www.ruby-lang.org/]
  • sed . . . . 1 match
          * [https://stackoverflow.com/questions/9605232/how-to-merge-every-two-lines-into-one-from-the-command-line merge every two lines]
  • singleusermode . . . . 1 match
         http://linuxbsdos.com/2015/03/19/how-to-reset-user-password-on-ubuntu-14-10/
  • slack-send.sh . . . . 1 match
         https://github.com/gimslab/scripts/blob/master/slack-send.sh
  • small-dic . . . . 1 match
         javascript:function%20openSdic(){var%20w=window.open('http://endic.naver.com/small.naver?where=index','DirectSearch_Dic','left='+(screen.width-410)+',top=17,width=405,height=500,resizable=no,scrollbars=no');void(0);}openSdic();
  • sonoff . . . . 1 match
         [^https://www.amazon.com/gp/product/B0773DFQJ9/ref=as_li_tl?ie=UTF8&camp=1789&creative=9325&creativeASIN=B0773DFQJ9&linkCode=as2&tag=gimsaa-20&linkId=ea8e575f8aee6769316afa777cf9d5bc Amazon]
  • spring . . . . 1 match
         http://www.springframework.org/
  • tcpdump . . . . 1 match
         sudo tcpdump -i eth0 -A dst a.b.com and tcp port http
  • test tool . . . . 1 match
         https://github.com/tsenart/vegeta
  • textdiagram . . . . 1 match
         https://plantuml.com/
  • touchpad . . . . 1 match
         https://williambharding.com/blog/linux-to-macbook/linux-with-a-macbook-touchpad-feel-pt-2/
  • uml . . . . 1 match
         uml tool for eclipse : http://www.objectaid.com/
  • unix . . . . 1 match
         [^http://www.unix.co.kr]
  • updatehosts.sh . . . . 1 match
         https://github.com/gimslab/scripts/blob/master/updatehosts.sh
  • vimrc . . . . 1 match
         https://github.com/gimslab/scripts/blob/master/.vimrc
  • web . . . . 1 match
         웹에서 upload를 할때 http와 ftp 방식의 차이 비교 : [upload]
  • whichclass.jsp . . . . 1 match
         http://sample.gimslab.com/whichclass.jsp?java.lang.String
  • wifi keyboard cli client . . . . 1 match
         https://github.com/gimslab/wifi-keyboard-cli-client
  • x-internet . . . . 1 match
         [^http://www.openlaszlo.org/] : 플래쉬를 이용한 웹 UI
  • xbmc . . . . 1 match
         from - http://xbmc.org/
  • xpath . . . . 1 match
         XPath 1.0 : 1999년 11월 16일 w3c 권고안 발표, xml 문법을 사용하지 않는 독립된 문법 규격을 지님(http://www.w3.org/TR/xpath)
  • yaml . . . . 1 match
         http://mageddo.com/tools/yaml-converter
  • z . . . . 1 match
         [[play(http://foo.bar/my.mp3)]]
  • 곳.com . . . . 1 match
         http://좋은글이있는.곳.com
  • 공개키방식암호화 . . . . 1 match
         참조:[https], [openssl aes 암호화]
  • 공모전 . . . . 1 match
         http://www.ipak.or.kr/h_board/view_popup.php?bbs_id=mainFrame&doc_num=17&c607=040101
  • 공인인증서 . . . . 1 match
          * 공인인증체제, 우리에게 임박한 미래로부터의 리스크 - http://www.zdnet.co.kr/itbiz/column/anchor/goodhyun/0,39030292,39172043,00.htm
  • 구구단 . . . . 1 match
         http://wiki.gimslab.com/gugudan/
  • 구글 엔지니어는 이렇게 일한다 - 타이터스 위터스 외 - 202206 . . . . 1 match
         html version (eng) : https://abseil.io/resources/swe-book/html/ch01.html
         == CH 17. Code Search ==
  • 그럼에도불구하고아직은기술이중요한이유 . . . . 1 match
         from zdnet korea [^http://www.zdnet.co.kr/itbiz/column/anchor/goodhyun/0,39030292,39148802,00.htm]
  • 글자풍경-유지원 . . . . 1 match
         https://image.aladin.co.kr/product/17959/65/cover500/8932473951_1.jpg
  • 담배 . . . . 1 match
         [^http://www.kbs.co.kr/2tv/sisa/chu60/vod/1437261_879.html] - KT&G를 아십니까?
  • 모델링 . . . . 1 match
         [StarUML] : StarUML은 빠르고, 유연하고, 확장가능하며, 풍부한 기능에 Win32 플랫폼에서 무료로 사용할 수 있는 UML/MDA 플랫폼(툴)을 개발하기 위한 오픈 소스 프로젝트입니다. StarUML 프로젝트의 목적은 Rational Rose, Together와 같은 상업적 도구를 비싼 돈을 들여 사용하지 않더라도 그에 준하는 기능을 갖춘 오픈 소스 소프트웨어 모델링 도구 및 플랫폼을 개발하는 것입니다. http://staruml.sourceforge.net/
  • 모바일관련기준 . . . . 1 match
         [http://www.w3.org/TR/mobile-bp/ Mobile Web Best Practices 1.0 Basic Guidelines]
  • 모바일웹에서인증된기기식별 . . . . 1 match
         물론 위의 모든 트래픽은 https를 통해 암호화송수신을 해야하며, 사용자가 브라우져 쿠키를 수동으로 지웠을 경우 다시 쿠키를 발급받아야한다.
  • 모험을거부하는것은곧삶을거부하는것 . . . . 1 match
         (행복한 경영이야기 http://www.happyceo.co.kr/)
  • 무료팩스 . . . . 1 match
         http://mail.paran.com 무료 팩스 수신(번호 = 1515+핸폰번호)
  • 백만불짜리습관 . . . . 1 match
         http://www.aladdin.co.kr/shop/wproduct.aspx?ISBN=899558551X
  • 사설Repository지정하기 . . . . 1 match
          <url>http://my_repo:8081</url>
  • 사용제한된특수Ipv4 . . . . 1 match
         부트스트랩 용, 연결된 내부 네트워크에 있는 특정 호스트 식별, 네트워크 식별, 테스트용, 사설망 내부에서 사용 등의 특수목적 : http://ip.nida.or.kr/ip/ipv4.jsp
  • 삼보MobyF-220 . . . . 1 match
         http://pda.nate.com/style/review/review/read.jsp?board_id=HW&page=1&num=16&no=6&jobid=&pda_os
  • 삽질 . . . . 1 match
         계기 : http://agile.egloos.com/m/5774862
  • 생각을SHOW하라-댄로암 . . . . 1 match
         https://image.aladin.co.kr/product/355/41/cover500/8950917882_1.jpg?width=160
  • 세상에서가장재미있는61가지심리실험인간관계편-이케가야유지 . . . . 1 match
         https://thumbnail14.coupangcdn.com/thumbnails/remote/492x492ex/image/vendor_inventory/37cc/8d4c850b6eaf3becf69d2c3a07bc844150b4b4060c9eb6590549e86bac7d.jpg
  • 소스품질관리도구 . . . . 1 match
         참고 : [CI], [CI 도구], [http://jbrugge.com/glean/tools.html Glean:Tools]
  • 스프링5레시피-마틴데니엄외 . . . . 1 match
         https://image.aladin.co.kr/product/16324/1/cover500/k172533448_1.jpg?width=300
  • 시스템복구 . . . . 1 match
         http://www.hiren.info
  • 아키텍쳐 패턴 . . . . 1 match
         https://mingrammer.com/translation-10-common-software-architectural-patterns-in-a-nutshell
  • 안마태 . . . . 1 match
         http://www.ahnmatae.org/
  • 암호정책 . . . . 1 match
         http://www.kisa.or.kr/kisa/seed/jsp/seed.jsp
  • 애자일소프트웨어개발선언문 . . . . 1 match
         http://agilemanifesto.org/
  • 어떻게살것인가-유시민 . . . . 1 match
         https://image.aladin.co.kr/product/2398/18/cover500/8965132282_2.jpg?width=180
  • 웹서비스동적스텁생성클라이언트 . . . . 1 match
          call.setTargetEndpointAddress(new URL("http://localhost:9090/axis/DiceWS.jws?wsdl"));
  • 웹서비스의배경 . . . . 1 match
         [^http://www.xmethods.com] - 웹서비스 목록과 WSDL 제공
  • 웹서비스의보안 . . . . 1 match
         https 사용 [SOAP]에 인증정보 추가
  • 웹접근성 . . . . 1 match
         [^http://hyeonseok.com/pmwiki/]
  • 웹표준-기본다지기 . . . . 1 match
         abbr, acronym, code
  • 웹표준구축비용 . . . . 1 match
         http://kldp.org/node/65657#comment-218550
  • 웹표준단계적달성전략 . . . . 1 match
         valid code
  • 윈도우환경변수 . . . . 1 match
         http://blog.daum.net/kwingpoya/6906835
  • 유니코드RIGHT-TO-LEFTOVERRIDE . . . . 1 match
         hexcode : E2 80 AE
  • 의도적 수련 . . . . 1 match
         [참고] 당신이 제자리 걸음인 이유 : 지루하거나 불안하거나1,2 (http://agile.egloos.com/page/4)
  • 의식혁명-DavidR.Hawkins . . . . 1 match
         https://image.aladin.co.kr/product/1306/53/cover/8960170836_1.jpg
  • 일단오늘한줄써봅시다-김민태 . . . . 1 match
         https://image.aladin.co.kr/product/18011/91/cover500/k712534748_1.jpg
  • 자바공인인증서처리애플리케이션 . . . . 1 match
         [^http://www.zdnet.co.kr/builder/dev/java/0%2C39031622%2C39160490%2C00.htm]
  • 전자서명 . . . . 1 match
         http://www.kisa.or.kr/kisa/kcac/jsp/kcac_3010_01.jsp
  • 좋은 글이 있는 곳 . . . . 1 match
         {{{http://}}}[좋은글이있는.곳.com]
  • 좋은글 . . . . 1 match
         http://no-smok.net/nsmk/%EC%A2%8B%EC%9D%80%EC%B9%9C%EA%B5%AC
  • 지적대화를위한넓고얕은지식역사경제정치사회윤리편-채사장 . . . . 1 match
         https://image.aladin.co.kr/product/4948/14/cover500/8994120963_1.jpg
  • 책상 . . . . 1 match
         https://www.thehumansolution.com/ergonomic-office-desk-ergonomic-chair-and-keyboard-height-calculator/
  • 최신해킹동향및해킹기술수강노트 . . . . 1 match
         [^http://cgi.chol.com/~jskims/ez2000/ezboard.cgi?db=pds]
  • 충전식 전자책 블루투스 리모컨 게임패드 SM-031N . . . . 1 match
         키 설명: http://itempage3.auction.co.kr/DetailView.aspx?itemno=B357708734
  • 클래스로딩로그보기Jvm옵션 . . . . 1 match
         http://www.herongyang.com/JVM/ClassLoader-JVM-Option-verbose-class.html
  • 태극기 . . . . 1 match
         http://wiki.gimslab.com/html5/korflag.html
  • 태터툴즈 . . . . 1 match
         http://www.tattertools.com
  • 탭모양의메뉴만들기 . . . . 1 match
         실행화면보기 http://wiki.gimslab.com/wiki_content/css_tips/minitab_menu.html
  • 텍스트처리명령어 . . . . 1 match
         recode
  • 포렌식 . . . . 1 match
         리눅스 배포판 검색 http://distrowatch.com
  • 플랫폼으로서의웹 . . . . 1 match
         [^http://www.etechtrend.co.kr/2006/05/cauaiac_web.html]에서 퍼왔습니다.
  • 한영전환Shift-Space로변경MacOSMonterey . . . . 1 match
         https://blog.edit.kr/entry/macOS-%ED%95%9C%EC%98%81-%EC%A0%84%ED%99%98-%EB%8B%A8%EC%B6%95%ED%82%A4-Shift-Space-%EB%A1%9C-%EB%B3%80%EA%B2%BD%ED%95%98%EA%B8%B0
  • 해쉬함수 . . . . 1 match
         참조 : wikipedia, kldp.org, http://choiwonwoo.egloos.com/1183807
Found 527 matching pages out of 1802 total pages

You can also click here to search title.

Valid XHTML 1.0! Valid CSS! powered by MoniWiki
last modified 2018-11-18 20:52:00
Processing time 1.2988 sec